react-design-tokens
![npm](https://img.shields.io/npm/v/@component-driven/react-design-tokens.svg)
React components to document design tokens in a styleguide.
Examples
import { Grid } from 'theme-ui'
import theme from './src/examples/cdds'
import { Colors, Spacing, Typography } from './src'
;<Grid gap={5}>
<Colors theme={theme} />
<Spacing theme={theme} />
<Typography theme={theme} />
</Grid>
GitHub Primer Design System
import { Grid } from 'theme-ui'
import theme from './src/examples/primer'
import { Colors, Spacing, Typography } from './src'
;<Grid gap={5}>
<Colors theme={theme} />
<Spacing theme={theme} />
<Typography theme={theme} />
</Grid>