import type { Meta, Story } from '@storybook/react'; import { TableProgressbar } from '../../../table-progressbar'; import type { TableProgressbarProps } from '../../../table-progressbar'; export default { component: TableProgressbar, title: 'Data Grid/In Cells/Progress' } as Meta; const Template: Story = (args) => ( ); export const Utilization = Template.bind({}); Utilization.args = { current: 18, total: 100 };