import * as React from 'react'; import type { Meta, StoryObj } from '@storybook/react-vite'; import { Progress } from './progress'; const meta = { title: 'Components/Progress', component: Progress, parameters: { layout: 'centered', docs: { description: { component: 'Determinate progress bar. Omit `value` for an indeterminate task and Radix reports it as such to assistive technology.\n\nTakes `size` (`md` 6px, `lg` 9px — CBAR’s two heights) and `colorPalette`. For a circular version see `ProgressCircle`, which ships from the same subpath.', }, }, }, tags: ['autodocs'], args: { value: 60 }, decorators: [(Story) =>