# UI Kit
Проект представляет из себя UI-кит, а также его документацию на Storybook. 

# Project setup
```
npm install
```

## Compile and Hot-Reload docs for Development
```
npm run storybook
```

## Compile docs for Production
```
npm run build-storybook
```

## Usage
Import package inside CSR framework (in entrypoint):
```js
import 'top-ui-kit';
```

Import package design tokens:
```js
import { colors, units } from 'top-ui-kit/tokens';
```

Import SCSS styles for all components:
```scss
@import '~top-ui-kit/all.scss';
```

Import particular SCSS styles for components:
```scss
@import '~top-ui-kit/components/button.scss';
```