import * as React from 'react'
import { withTheme } from 'utils'
import { storiesOf } from '@storybook/react'
import Box from 'Box'
import Icon from 'Icon'
import Button from '.'
const stories = storiesOf('Button', module)
stories.add('simple usage',
withTheme(() => {
return (
)
})
)
stories.add('with different size',
withTheme(() => {
return (
)
})
)
stories.add('with icon',
withTheme(() => {
return (
)
})
)
stories.add('with loading',
withTheme(() => {
return (
)
})
)