Installing the package
The package is available on the GitHub Package registry as a private npm package.$ npm install @kinty-app/ui
Add fonts
You need to add Roboto to your project.Add theme provider
In your application you need to add Theme Provider component.import { ThemeProvider, Card, Heading } from "@kinty-app/ui";import "@kinty-app/ui/index.css";const App = () => (<ThemeProvider><Card><Heading level={1}>Hello World</Heading></Card></ThemeProvider>);