From 80e55fe051c56f6e0ea150935aea8a4c85c959f8 Mon Sep 17 00:00:00 2001 From: Ben Lambillotte Date: Fri, 2 Aug 2024 10:05:02 -0700 Subject: [PATCH] feat: Add Pin Icon --- src/components/Icon.stories.tsx | 1 + src/components/Icon.tsx | 3 +++ 2 files changed, 4 insertions(+) diff --git a/src/components/Icon.stories.tsx b/src/components/Icon.stories.tsx index b57a68076..9db7b3505 100644 --- a/src/components/Icon.stories.tsx +++ b/src/components/Icon.stories.tsx @@ -55,6 +55,7 @@ export const Icon = (props: IconProps) => { "move", "add", "remove", + "pin", ]; const alertIcons: IconProps["icon"][] = [ "errorCircle", diff --git a/src/components/Icon.tsx b/src/components/Icon.tsx index fd20cc3f9..08405c4e0 100644 --- a/src/components/Icon.tsx +++ b/src/components/Icon.tsx @@ -828,6 +828,9 @@ export const Icons = { ), + pin: ( + + ), }; export type IconKey = keyof typeof Icons;