From b2110c19c67bfd0a9e01b6fffdfcbcc1e7f08535 Mon Sep 17 00:00:00 2001 From: Charles de Dreuille Date: Sun, 15 Mar 2026 19:10:58 +0000 Subject: [PATCH] Update CardsWithListBox.stories.tsx Signed-off-by: Charles de Dreuille --- .../src/recipes/CardsWithListBox.stories.tsx | 32 +++++++++++++++++-- 1 file changed, 30 insertions(+), 2 deletions(-) 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,