diff --git a/packages/design-system/lib/components/Select/Select.stories.tsx b/packages/design-system/lib/components/Select/Select.stories.tsx index daf9e067a..5c467e65a 100644 --- a/packages/design-system/lib/components/Select/Select.stories.tsx +++ b/packages/design-system/lib/components/Select/Select.stories.tsx @@ -16,8 +16,6 @@ type Story = StoryObj export const Default: Story = { args: { - icon: 'star', - itemIcon: 'check', items: ['Foo', 'Bar', 'Baz'], label: 'Select an item', name: 'foo', @@ -26,8 +24,6 @@ export const Default: Story = { export const ObjectItem: Story = { args: { - icon: 'star', - itemIcon: 'check', items: [ { label: 'Foo', value: 'foo' }, { label: 'Bar', value: 'bar' }, @@ -38,13 +34,21 @@ export const ObjectItem: Story = { }, } -export const Filtering: Story = { +export const Icons: Story = { args: { icon: 'star', itemIcon: 'check', items: ['Foo', 'Bar', 'Baz'], label: 'Select an item', name: 'foo', + }, +} + +export const Filtering: Story = { + args: { + items: ['Foo', 'Bar', 'Baz'], + label: 'Select an item', + name: 'foo', enableFiltering: true, }, }