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;