Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
ui-component-library / stories / presets / Buttons.story.tsx
Size: Mime:
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 />)