@ssaquif/naksha
v0.1.11
Published
A React Component Library
Downloads
2
Readme
🚧 Naksha 🚧
🚧 Naksha is a Work In Progress
🚧
Naksha is a React Component Library
following Atomic Design Principles, created as a hobby project.
It is my first venture into component libraries. A way for me to explore React Typescript, Design Systems, Web Accessibility among other things.
Installation
# npm
npm i @ssaquif/naksha
# yarn
yarn add @ssaquif/naksha
Usage
import { Field, Button } from '@ssaquif/naksha';
function App() {
return (
<div className="App">
<Field>
<Field.Label>Name</Field.Label>
<Field.Input />
<Button>Click</Button>
</Field>
</div>
);
}