import { action } from '@storybook/addon-actions';
import { Meta, Story, Props } from '@storybook/addon-docs/blocks';
import { Progress } from '../src/index';

<Meta title="Components|Progress" component={Progress} />

# Progress

The Progress component allows for visual feedback on uploads or form steps.

<Props of={Progress} />

<Story name="simple">
  <Progress value={50} />
</Story>

## With indicator

<Story name="indicator">
  <Progress indicator value={25} />
</Story>

## Themes

<Story name="different themening">
  <Progress theme="danger" value={75} />
</Story>
