diff --git a/packages/react/src/ProgressBar/ProgressBar.examples.stories.tsx b/packages/react/src/ProgressBar/ProgressBar.examples.stories.tsx new file mode 100644 index 00000000000..83ea763e1fc --- /dev/null +++ b/packages/react/src/ProgressBar/ProgressBar.examples.stories.tsx @@ -0,0 +1,55 @@ +import type {Meta} from '@storybook/react-vite' +import {ProgressBar, Stack} from '..' +import {DotFillIcon} from '@primer/octicons-react' + +export default { + title: 'Components/ProgressBar/Examples', + component: ProgressBar, +} as Meta + +export const WithVisibleTextValue = () => { + return ( + <> + +

50% completed

+ + ) +} + +export const MultipleSegments = () => { + return ( + <> + + + + + + + + + Done + + + + In progress + + + + Closed + + + + ) +}