Repository URL to install this package:
|
Version:
0.9.6 ▾
|
import React from 'react'
import { storiesOf } from '@storybook/react'
import { styled } from 'view-container'
import {
PrimaryButton,
SecondaryButton,
TertiaryButton,
ButtonWithIcon,
GhostButton,
LinkButton,
} from 'presets/Buttons'
storiesOf('presets/Buttons', module)
.add('Primary Button', () => <PrimaryButton />)
.add('Secondary Button', () => <SecondaryButton />)
.add('Tertiary Button', () => <TertiaryButton />)
.add('Button with Icon', () => <ButtonWithIcon />)
.add('Ghost Button', () => <GhostButton />)
.add('Link Button', () => <LinkButton />)