@atom-learning/components
v6.8.1
Published
  
Downloads
5,551
Readme
Component Library
lib/, released as @atom-learning/components, is a collection of generic React components built using stitches and radix, it includes components that cover layout, content, data collection, media and a host of other UI concerns. It uses @atom-learning/theme to provide the design tokens for color, typography, spacing and layout.
You can read about the components included in @atom-learning/components at https://design.atomlearning.technology
Getting started
Install the publicly available @atom-learning/components npm package:
yarn add @atom-learning/componentsImport and use in your project:
import { Heading, Text } from '@atom-learning/components'
const Component = () => {
return (
<article>
<Heading className="mb-3">This is a heading</Heading>
<Text>This is a paragraph of text</Text>
</article>
)
}