Licence
MIT
Version
0.58.0
Deps
16
Size
969 kB
Vulns
0
Weekly
0
@nivells/ds
- @nivells/ds is a component library with React, Typescript and Tailwind CSS.
See the Full Documentation
Install
npm install @nivells/ds
# or
yarn add @nivells/ds
Usage
- Add the
index.cssfile to the root of your project.
import '@nivells/ds/dist/index.css';
import '@nivells/ds/dist/aditional.css';
- Import components and use them.
import { Button } from '@nivells/ds';
const App = () => {
return (
<div>
<Button buttonType="outline" label="Serif test" />
</div>
);
};