Mirror Design System
yarn add degen
Wrap the root of your app in a ThemeProvider
, import the external stylesheet, and add Inter and iA Writer Mono to your font stack. (Tip: Both fonts are available on Fontsource.)
import { ThemeProvider } from 'degen'import 'degen/styles'const App = () => {return <ThemeProvider>{children}</ThemeProvider>}
import { Button, IconLockClosed, Stack } from 'degen'