import type { Meta, StoryObj } from '@storybook/react'; import { Progress } from './progress'; import React from 'react'; const meta: Meta = { title: 'UI/Progress', component: Progress, render: args => , argTypes: { value: { control: { type: 'range', min: 0, max: 100, step: 1 }, }, variant: { control: 'select', options: ['default', 'success', 'info', 'warning', 'destructive'], }, }, }; export default meta; type Story = StoryObj; export const Default: Story = { args: { value: 33, }, render: args => (
), }; export const Complete: Story = { args: { value: 100, }, render: args => (
), }; export const Variants: Story = { render: () => (
), };