diff --git a/weave-js/src/assets/icons/icon-overflow-vertical.svg b/weave-js/src/assets/icons/icon-overflow-vertical.svg
new file mode 100644
index 000000000000..07505a23c59d
--- /dev/null
+++ b/weave-js/src/assets/icons/icon-overflow-vertical.svg
@@ -0,0 +1,5 @@
+
diff --git a/weave-js/src/components/Icon/Icon.tsx b/weave-js/src/components/Icon/Icon.tsx
index e5a24b0d86cb..e552741b9260 100644
--- a/weave-js/src/components/Icon/Icon.tsx
+++ b/weave-js/src/components/Icon/Icon.tsx
@@ -142,6 +142,7 @@ import {ReactComponent as ImportOpenaiLogo} from '../../assets/icons/icon-openai
import {ReactComponent as ImportOrchestrationLaunch} from '../../assets/icons/icon-orchestration-launch.svg';
import {ReactComponent as ImportOrganizationCorporate} from '../../assets/icons/icon-organization-corporate.svg';
import {ReactComponent as ImportOverflowHorizontal} from '../../assets/icons/icon-overflow-horizontal.svg';
+import {ReactComponent as ImportOverflowVertical} from '../../assets/icons/icon-overflow-vertical.svg';
import {ReactComponent as ImportPanTool} from '../../assets/icons/icon-pan-tool.svg';
import {ReactComponent as ImportPanTool1} from '../../assets/icons/icon-pan-tool-1.svg';
import {ReactComponent as ImportPanel} from '../../assets/icons/icon-panel.svg';
@@ -695,6 +696,9 @@ export const IconOrganizationCorporate = (props: SVGIconProps) => (
export const IconOverflowHorizontal = (props: SVGIconProps) => (
);
+export const IconOverflowVertical = (props: SVGIconProps) => (
+
+);
export const IconPanTool = (props: SVGIconProps) => (
);
@@ -1178,6 +1182,7 @@ const ICON_NAME_TO_ICON: Record = {
'orchestration-launch': IconOrchestrationLaunch,
'organization-corporate': IconOrganizationCorporate,
'overflow-horizontal': IconOverflowHorizontal,
+ 'overflow-vertical': IconOverflowVertical,
'pan-tool': IconPanTool,
'pan-tool-1': IconPanTool1,
panel: IconPanel,
diff --git a/weave-js/src/components/Icon/index.ts b/weave-js/src/components/Icon/index.ts
index 3e6bb97e1120..f2e4964c77fd 100644
--- a/weave-js/src/components/Icon/index.ts
+++ b/weave-js/src/components/Icon/index.ts
@@ -142,6 +142,7 @@ export {
IconOrchestrationLaunch,
IconOrganizationCorporate,
IconOverflowHorizontal,
+ IconOverflowVertical,
IconPanel,
IconPanelAutoGen,
IconPanelManual,
diff --git a/weave-js/src/components/Icon/types.ts b/weave-js/src/components/Icon/types.ts
index e8560f4b2a78..d5a53de5f86a 100644
--- a/weave-js/src/components/Icon/types.ts
+++ b/weave-js/src/components/Icon/types.ts
@@ -141,6 +141,7 @@ export const IconNames = {
OrchestrationLaunch: 'orchestration-launch',
OrganizationCorporate: 'organization-corporate',
OverflowHorizontal: 'overflow-horizontal',
+ OverflowVertical: 'overflow-vertical',
PanTool: 'pan-tool',
PanTool1: 'pan-tool-1',
Panel: 'panel',