DocSpace-client/web/ASC.Web.Components/example/stories/buttons/middle/middle.button.stories.js

24 lines
769 B
JavaScript

import React from 'react';
import { storiesOf } from '@storybook/react';
import { action } from '@storybook/addon-actions';
import { withKnobs, boolean, text, select } from '@storybook/addon-knobs/react';
import withReadme from 'storybook-readme/with-readme';
import Readme from './README.md';
import { Button } from 'asc-web-components';
const sizeOptions = ['base', 'middle', 'big', 'huge'];
storiesOf('Components|Button', module)
.addDecorator(withKnobs)
.addDecorator(withReadme(Readme))
.add('middle', () => (
<Button
size={select('size', sizeOptions, 'middle')}
primary={boolean('primary', true)}
disabled={boolean('disable', false)}
onClick={action('clicked')}
>
{text('Label', 'Middle button')}
</Button>
));