27 lines
586 B
TypeScript
27 lines
586 B
TypeScript
// 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 (
|
|
<StoryRow>
|
|
<ProgressBar count={count} total={total} />
|
|
</StoryRow>
|
|
);
|
|
};
|
|
|
|
_ProgressBar.story = {
|
|
name: 'ProgressBar',
|
|
};
|