From 8556d5b771d06d85069bce4069865072fdb1479c Mon Sep 17 00:00:00 2001 From: Marie Barr-Ramsey Date: Thu, 12 Dec 2024 15:07:14 -0800 Subject: [PATCH] ran addicon --- weave-js/src/components/Icon/Icon.tsx | 5 +++++ weave-js/src/components/Icon/index.ts | 1 + weave-js/src/components/Icon/types.ts | 1 + 3 files changed, 7 insertions(+) diff --git a/weave-js/src/components/Icon/Icon.tsx b/weave-js/src/components/Icon/Icon.tsx index c1c07c7df01..e0a7b704e46 100644 --- a/weave-js/src/components/Icon/Icon.tsx +++ b/weave-js/src/components/Icon/Icon.tsx @@ -206,6 +206,7 @@ import {ReactComponent as ImportSmoothing} from '../../assets/icons/icon-smoothi import {ReactComponent as ImportSort} from '../../assets/icons/icon-sort.svg'; import {ReactComponent as ImportSortAscending} from '../../assets/icons/icon-sort-ascending.svg'; import {ReactComponent as ImportSortDescending} from '../../assets/icons/icon-sort-descending.svg'; +import {ReactComponent as ImportSpiral} from '../../assets/icons/icon-spiral.svg'; import {ReactComponent as ImportSplit} from '../../assets/icons/icon-split.svg'; import {ReactComponent as ImportSquare} from '../../assets/icons/icon-square.svg'; import {ReactComponent as ImportStar} from '../../assets/icons/icon-star.svg'; @@ -892,6 +893,9 @@ export const IconSortAscending = (props: SVGIconProps) => ( export const IconSortDescending = (props: SVGIconProps) => ( ); +export const IconSpiral = (props: SVGIconProps) => ( + +); export const IconSplit = (props: SVGIconProps) => ( ); @@ -1262,6 +1266,7 @@ const ICON_NAME_TO_ICON: Record = { sort: IconSort, 'sort-ascending': IconSortAscending, 'sort-descending': IconSortDescending, + spiral: IconSpiral, split: IconSplit, square: IconSquare, star: IconStar, diff --git a/weave-js/src/components/Icon/index.ts b/weave-js/src/components/Icon/index.ts index 98a0208b8d2..55554e7e44f 100644 --- a/weave-js/src/components/Icon/index.ts +++ b/weave-js/src/components/Icon/index.ts @@ -206,6 +206,7 @@ export { IconSort, IconSortAscending, IconSortDescending, + IconSpiral, IconSplit, IconSquare, IconStar, diff --git a/weave-js/src/components/Icon/types.ts b/weave-js/src/components/Icon/types.ts index 142dd8f562a..b36a5e7594b 100644 --- a/weave-js/src/components/Icon/types.ts +++ b/weave-js/src/components/Icon/types.ts @@ -205,6 +205,7 @@ export const IconNames = { Sort: 'sort', SortAscending: 'sort-ascending', SortDescending: 'sort-descending', + Spiral: 'spiral', Split: 'split', Square: 'square', Star: 'star',