Skip to content

Commit

Permalink
chore(ui): add overflow-vertical icon (#2866)
Browse files Browse the repository at this point in the history
  • Loading branch information
jamie-rasmussen authored Nov 5, 2024
1 parent abe4fea commit 69a0f9b
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 0 deletions.
5 changes: 5 additions & 0 deletions weave-js/src/assets/icons/icon-overflow-vertical.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions weave-js/src/components/Icon/Icon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down Expand Up @@ -695,6 +696,9 @@ export const IconOrganizationCorporate = (props: SVGIconProps) => (
export const IconOverflowHorizontal = (props: SVGIconProps) => (
<ImportOverflowHorizontal {...updateIconProps(props)} />
);
export const IconOverflowVertical = (props: SVGIconProps) => (
<ImportOverflowVertical {...updateIconProps(props)} />
);
export const IconPanTool = (props: SVGIconProps) => (
<ImportPanTool {...updateIconProps(props)} />
);
Expand Down Expand Up @@ -1178,6 +1182,7 @@ const ICON_NAME_TO_ICON: Record<IconName, ElementType> = {
'orchestration-launch': IconOrchestrationLaunch,
'organization-corporate': IconOrganizationCorporate,
'overflow-horizontal': IconOverflowHorizontal,
'overflow-vertical': IconOverflowVertical,
'pan-tool': IconPanTool,
'pan-tool-1': IconPanTool1,
panel: IconPanel,
Expand Down
1 change: 1 addition & 0 deletions weave-js/src/components/Icon/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ export {
IconOrchestrationLaunch,
IconOrganizationCorporate,
IconOverflowHorizontal,
IconOverflowVertical,
IconPanel,
IconPanelAutoGen,
IconPanelManual,
Expand Down
1 change: 1 addition & 0 deletions weave-js/src/components/Icon/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 69a0f9b

Please sign in to comment.