Kali Design System
yarn add @kalidao/reality
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 '@kalidao/reality'import 'reality/styles'const App = () => {return <ThemeProvider>{children}</ThemeProvider>}
import { Button, IconLockClosed, Stack } from '@kalidao/reality'