0.1.11 ā€¢ Published 2 years ago

@ssaquif/naksha v0.1.11

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

šŸš§ Naksha šŸš§

style: styled-components

NPM

Storybook WebSite

Github Repo

šŸš§ 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>
  );
}