diff --git a/packages/ui/src/recipes/CardsWithListBox.stories.tsx b/packages/ui/src/recipes/CardsWithListBox.stories.tsx index 18d116f9e5..316159211a 100644 --- a/packages/ui/src/recipes/CardsWithListBox.stories.tsx +++ b/packages/ui/src/recipes/CardsWithListBox.stories.tsx @@ -142,18 +142,20 @@ interface ServiceListCardProps { title: string; items: ServiceItem[]; description?: boolean; + icons?: boolean; } const ServiceListCard = ({ title, items, description = false, + icons = true, }: ServiceListCardProps) => ( - + {title} @@ -165,7 +167,7 @@ const ServiceListCard = ({ @@ -217,6 +219,32 @@ export const Default = meta.story({ ), }); +export const WithNoIcons = meta.story({ + decorators: [withRouter], + args: { + icons: false, + description: true, + }, + render: args => ( + + + + + + + ), +}); + export const WithDescription = meta.story({ args: { description: true,