diff --git a/packages/react/src/components/ProgressIndicator/ProgressIndicator.stories.js b/packages/react/src/components/ProgressIndicator/ProgressIndicator.stories.js index 97b8a2b522a6..21c7e1d7eef1 100644 --- a/packages/react/src/components/ProgressIndicator/ProgressIndicator.stories.js +++ b/packages/react/src/components/ProgressIndicator/ProgressIndicator.stories.js @@ -72,3 +72,64 @@ export const Interactive = () => ( ); export const Skeleton = () => ; + +export const Playground = (args) => ( + + + + + + + +); + +Playground.argTypes = { + children: { + table: { + disable: true, + }, + }, + className: { + table: { + disable: true, + }, + }, + onChange: { + table: { + disable: true, + }, + }, + currentIndex: { + control: { type: 'number' }, + defaultValue: 0, + }, + spaceEqually: { + control: { type: 'boolean' }, + defaultValue: false, + }, + vertical: { + control: { type: 'boolean' }, + defaultValue: false, + }, +};