import Progress from "../app/components/Progress"; export default { title: "Components/Progress", component: Progress, parameters: { layout: "centered", docs: { description: { component: "Progress bar component for showing completion percentage. Displays a 3-segment progress bar with support for partial fills.", }, }, }, argTypes: { progress: { control: { type: "select" }, options: [ "1-0", "1-1", "1-2", "1-3", "1-4", "1-5", "2-0", "2-1", "2-2", "3-0", "3-1", "3-2", ], description: "Progress state (format: segments-partial)", }, }, tags: ["autodocs"], }; export const Default = { args: { progress: "3-2", }, render: (args) => (
), }; export const AllStates = { args: {}, render: (_args) => (

1-0

1-1

1-2

1-3

1-4

1-5

2-0

2-1

2-2

3-0

3-1

3-2

), parameters: { docs: { description: { story: "Different progress states of the progress bar component.", }, }, }, };