// Copyright 2019-2020 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import * as React from 'react'; import { number } from '@storybook/addon-knobs'; import { StoryRow } from './StoryRow'; import { ProgressBar } from './ProgressBar'; export default { title: 'Sticker Creator/elements', }; export const _ProgressBar = (): JSX.Element => { const count = number('count', 5); const total = number('total', 10); return ( ); }; _ProgressBar.story = { name: 'ProgressBar', };