1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-09 05:57:40 +02:00
bitwarden-browser/libs/components/src/progress/progress.stories.ts
2023-05-26 15:58:06 +02:00

41 lines
760 B
TypeScript

import { Meta, StoryObj } from "@storybook/angular";
import { ProgressComponent } from "./progress.component";
export default {
title: "Component Library/Progress",
component: ProgressComponent,
parameters: {
design: {
type: "figma",
url: "https://www.figma.com/file/Zt3YSeb6E6lebAffrNLa0h/Tailwind-Component-Library?node-id=1881%3A18185&t=AM0acaIJ00BUhZKz-4",
},
},
args: {
showText: true,
size: "default",
bgColor: "primary",
},
} as Meta;
type Story = StoryObj<ProgressComponent>;
export const Empty: Story = {
args: {
barWidth: 0,
},
};
export const Full: Story = {
args: {
barWidth: 100,
},
};
export const CustomText: Story = {
args: {
barWidth: 25,
text: "Loading...",
},
};