From 7ba8034d73f82e0d2649e00aef29e9f49a82b843 Mon Sep 17 00:00:00 2001 From: Nate Kelley Date: Mon, 24 Feb 2025 15:35:31 -0700 Subject: [PATCH] Update Segmented.stories.tsx --- .../components/ui/segmented/Segmented.stories.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/web/src/components/ui/segmented/Segmented.stories.tsx b/web/src/components/ui/segmented/Segmented.stories.tsx index af336cdb3..04f49b704 100644 --- a/web/src/components/ui/segmented/Segmented.stories.tsx +++ b/web/src/components/ui/segmented/Segmented.stories.tsx @@ -1,6 +1,6 @@ import type { Meta, StoryObj } from '@storybook/react'; import { Segmented } from './Segmented'; -import { HouseModern } from '../icons'; +import { BottleChampagne, Grid, HouseModern, PaintRoller } from '../icons'; const meta: Meta = { title: 'Base/Segmented', @@ -39,8 +39,8 @@ type Story = StoryObj; const defaultItems = [ { value: 'tab1', label: 'Tab 1', icon: }, - { value: 'tab2', label: 'Tab 2', disabled: true, icon: }, - { value: 'tab3', label: 'Tab 3', icon: } + { value: 'tab2', label: 'Tab 2', disabled: true }, + { value: 'tab3', label: 'Tab 3' } ]; export const Default: Story = { @@ -80,9 +80,9 @@ export const LargeBlock: Story = { export const WithIcons: Story = { args: { items: [ - { value: 'list', label: 'List' }, - { value: 'grid', label: 'Grid' }, - { value: 'gallery', label: 'Gallery' } + { value: 'list', label: 'List', icon: }, + { value: 'grid', label: 'Grid', icon: }, + { value: 'gallery', label: 'Gallery', icon: } ] } };