diff --git a/src/components/Icon.stories.tsx b/src/components/Icon.stories.tsx
index 92758a847..54a1455e5 100644
--- a/src/components/Icon.stories.tsx
+++ b/src/components/Icon.stories.tsx
@@ -53,6 +53,8 @@ export const Icon = (props: IconProps) => {
"undoCircle",
"drag",
"move",
+ "add",
+ "remove",
];
const alertIcons: IconProps["icon"][] = [
"errorCircle",
@@ -142,6 +144,14 @@ export const Icon = (props: IconProps) => {
"car",
"basement",
"cube",
+ "cart",
+ "programChange",
+ "architectural",
+ "structural",
+ "mep",
+ "designPackage",
+ "updateDesignPackage",
+ "exteriorStyle",
];
const navigationIcons: IconProps["icon"][] = [
"projects",
diff --git a/src/components/Icon.tsx b/src/components/Icon.tsx
index 0b235c7eb..c2c0b1fdc 100644
--- a/src/components/Icon.tsx
+++ b/src/components/Icon.tsx
@@ -249,6 +249,18 @@ export const Icons = {
d="M6 2H4V20H3V22H7V20H6V15H19C19.5523 15 20 14.5523 20 14V5C20 4.44772 19.5523 4 19 4H6V2ZM6 6V13H18V6H6Z"
/>
),
+ add: (
+ <>
+
+
+ >
+ ),
+ remove: (
+ <>
+
+
+ >
+ ),
// Arrows
chevronsDown: (
<>
@@ -740,6 +752,52 @@ export const Icons = {
checkCircleFilled: (
),
+ cart: (
+ <>
+
+
+
+ >
+ ),
+ programChange: (
+
+ ),
+ architectural: (
+
+ ),
+ structural: (
+
+ ),
+ mep: (
+
+ ),
+ designPackage: (
+
+ ),
+ updateDesignPackage: (
+
+ ),
+ exteriorStyle: (
+
+ ),
};
export type IconKey = keyof typeof Icons;