From 7b0cf9233cdda9c586a3ac3d7f935013469ba0c3 Mon Sep 17 00:00:00 2001 From: Arthur Patterson Date: Wed, 2 Oct 2024 12:53:44 -0500 Subject: [PATCH] [sc-59199] add calendar with X icon; --- src/components/Icon.stories.tsx | 3 ++- src/components/Icon.tsx | 12 +++++++++--- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/src/components/Icon.stories.tsx b/src/components/Icon.stories.tsx index 9db7b3505..4bdfb8d29 100644 --- a/src/components/Icon.stories.tsx +++ b/src/components/Icon.stories.tsx @@ -113,6 +113,8 @@ export const Icon = (props: IconProps) => { "dollar", "userCircle", "calendar", + "calendarError", + "calendarX", "buildingHouse", "house", "bell", @@ -122,7 +124,6 @@ export const Icon = (props: IconProps) => { "chair", "bolt", "changeEvent", - "calendarError", "nested", "estimate", "commentItem", diff --git a/src/components/Icon.tsx b/src/components/Icon.tsx index 69abd2233..662607ee9 100644 --- a/src/components/Icon.tsx +++ b/src/components/Icon.tsx @@ -401,9 +401,6 @@ export const Icons = { criticalPath: ( ), - calendarError: ( - - ), nested: , estimate: ( @@ -477,6 +474,15 @@ export const Icons = { calendar: ( ), + calendarError: ( + + ), + calendarX: ( + <> + + + + ), changeEvent: ( ),