import * as React from "react"; import { Story, Meta } from "@storybook/react"; import { ProgressBar, ProgressBarSegmentLegend } from "../index"; import { ProgressBarProps, ProgressBarSizes } from "../components/ProgressBar"; import { green, yellow } from "../../design-tokens/build/js/designTokens"; export default { title: "Charts/ProgressBar", component: ProgressBar, subcomponents: { ProgressBarSegmentLegend }, argTypes: { size: { control: { options: ProgressBarSizes } }, caption: { control: { type: "text" } } } } as Meta; const Template: Story = args => ( ); export const Default = Template.bind({}); export const DataSegments = Template.bind({}); DataSegments.args = { data: [ { color: green, percentage: 40 }, { color: yellow, percentage: 20 } ] }; export const DataSegmentsWithLegend = args => { const chartData = [ { color: green, percentage: 40 }, { color: yellow, percentage: 20 } ]; return ( <> ); };