mirror of
https://github.com/bitwarden/browser
synced 2025-12-20 10:13:31 +00:00
* Update Figma links updated existing Figma links to point to the new file and added Figma links to components missing them * Added last missing Figma links
41 lines
761 B
TypeScript
41 lines
761 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/design/Zt3YSeb6E6lebAffrNLa0h/Tailwind-Component-Library?node-id=16329-40933&t=b5tDKylm5sWm2yKo-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...",
|
|
},
|
|
};
|