@nakobase/nako-ui
v1.3.0
Published
Accessible, reusable and simple React UI components.
Downloads
12
Readme
Nako UI
Nako UI provides accessible, reusable and simple React components.
It makes creating web applications and websites easy.
Installation
# with npm
npm install @nakobase/nako-ui
# with yarn
yarn add @nakobase/nako-ui
# with pnpm
pnpm add @nakobase/nako-ui
# with Bun
bun add @nakobase/nako-ui
Usage
To start using the components, please follow these steps:
- Import styles in your project:
import '@nakobase/nako-ui/style.css';
- Import the components you need:
import { Button } from '@nakobase/nako-ui';
function App() {
return (
<Button size="lg">Click me</Button>
);
}