This is the Web Components implementation of the Atomium design system to be used in any Framework or Vanilla JS
npm i @juntossomosmais/atomiumimport '@juntossomosmais/atomium/core.css'
import { defineCustomElements } from '@juntossomosmais/atomium/loader'
defineCustomElements(window)
<atom-button>Click me</atom-button><head>
<link rel="stylesheet" href="https://atomium.juntossomosmais.com.br/core/SEMVER/core.css">
<link rel="stylesheet" href="https://atomium.juntossomosmais.com.br/tokens/SEMVER/tokens.css">
</head>
<body>
<atom-button>Click me</atom-button>
<script type="module">
import { defineCustomElements } from 'https://atomium.juntossomosmais.com.br/core/SEMVER/loader/index.js'
document.addEventListener('DOMContentLoaded', function () {
defineCustomElements()
})
</script>
</body>