0.0.1 • Published 7 years ago

small-ui v0.0.1

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

small-ui

A small responsive ui framework.

Installing

npm install small-ui

The responsive breakponits

  • small when width < 641px
  • medium when width < 1025px
  • large when width >= 1025px

How to use

import { Toolbar } from 'small-ui';

...

<Toolbar
  items={[
    { key: 'home', label: 'Home', href: '/#/home' },
    { key: 'about', label: 'About', href: '/#/about' }
  ]}
/>