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 / atoms / ProgressBar.story.tsx
Size: Mime:
import React from 'react'
import { storiesOf } from '@storybook/react'
import ProgressBar from 'atoms/ProgressBar'

storiesOf('atoms/ProgressBar', module)
  .add('default', () => <ProgressBar currentValue={50} totalValue={100} />)
  .add('color change', () => <ProgressBar currentValue={30} totalValue={100} barColor="green" />)