v4.0.1

Getting Started

Kinty UI is the Kinty's Design System React Component Library. It is based on IOFinance UI Kit and is distributed as a npm package.

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>
);