ui-neu
Version:
Neu UI, a responsive React component library.
33 lines (20 loc) • 615 B
text/mdx
import { Preview, Meta, Story, Props } from "@storybook/addon-docs/blocks";
import { withKnobs, text, color } from "@storybook/addon-knobs";
import { Button } from "./Button";
<Meta title="Button" component={Button} />
You know... for clicking things.
Currently available props for `Button` is just limited to size at the moment but more planned.
<Preview>
<Story name="Standard" height="100px">
<Button size="small">Submit</Button>
</Story>
</Preview>
`import { Button } from "ui-neu"`
```jsx
<Button size="small">Submit</Button>
```
<Props of={Button} />