From 9521e379866fb9702b7c86b719d67a08bda9941e Mon Sep 17 00:00:00 2001 From: Jake Laderman Date: Mon, 24 Jun 2024 23:38:50 -0400 Subject: [PATCH] feat: update some icons (#613) --- src/components/icons/ClusterIcon.tsx | 88 +++++++++----- src/components/icons/CompatibilityIcon.tsx | 5 +- src/components/icons/HomeIcon.tsx | 2 +- .../icons/ManagementClusterIcon.tsx | 70 ++++-------- src/components/icons/NamespaceIcon.tsx | 43 +++++++ src/components/icons/ProjectIcon.tsx | 47 ++------ src/components/icons/ProtectedCluster.tsx | 45 -------- src/components/icons/ProtectedClusterIcon.tsx | 107 ++++++++++-------- .../icons/ProtectedManagementClusterIcon.tsx | 46 ++++++++ src/components/icons/ReturnIcon.tsx | 24 +++- src/icons.ts | 3 +- 11 files changed, 265 insertions(+), 215 deletions(-) create mode 100644 src/components/icons/NamespaceIcon.tsx delete mode 100644 src/components/icons/ProtectedCluster.tsx create mode 100644 src/components/icons/ProtectedManagementClusterIcon.tsx diff --git a/src/components/icons/ClusterIcon.tsx b/src/components/icons/ClusterIcon.tsx index f6b06d29..a8c73f1e 100644 --- a/src/components/icons/ClusterIcon.tsx +++ b/src/components/icons/ClusterIcon.tsx @@ -3,36 +3,70 @@ import createIcon from './createIcon' export default createIcon(({ size, color }) => ( - - - - - - + + + + + + + + + + + + + + + + + + + + + )) diff --git a/src/components/icons/CompatibilityIcon.tsx b/src/components/icons/CompatibilityIcon.tsx index ae85a9d9..9c4bf10b 100644 --- a/src/components/icons/CompatibilityIcon.tsx +++ b/src/components/icons/CompatibilityIcon.tsx @@ -3,14 +3,13 @@ import createIcon from './createIcon' export default createIcon(({ size, color }) => ( )) diff --git a/src/components/icons/HomeIcon.tsx b/src/components/icons/HomeIcon.tsx index 3cfacd27..4f25745d 100644 --- a/src/components/icons/HomeIcon.tsx +++ b/src/components/icons/HomeIcon.tsx @@ -10,7 +10,7 @@ export default createIcon(({ size, color }) => ( diff --git a/src/components/icons/ManagementClusterIcon.tsx b/src/components/icons/ManagementClusterIcon.tsx index d0745c55..44a67a30 100644 --- a/src/components/icons/ManagementClusterIcon.tsx +++ b/src/components/icons/ManagementClusterIcon.tsx @@ -3,65 +3,41 @@ import createIcon from './createIcon' export default createIcon(({ size, color }) => ( - - - - - - - - + + + )) diff --git a/src/components/icons/NamespaceIcon.tsx b/src/components/icons/NamespaceIcon.tsx new file mode 100644 index 00000000..492e4389 --- /dev/null +++ b/src/components/icons/NamespaceIcon.tsx @@ -0,0 +1,43 @@ +import createIcon from './createIcon' + +export default createIcon(({ size, color }) => ( + + + + + + + + + + + + + + +)) diff --git a/src/components/icons/ProjectIcon.tsx b/src/components/icons/ProjectIcon.tsx index 9282abc0..4df48a21 100644 --- a/src/components/icons/ProjectIcon.tsx +++ b/src/components/icons/ProjectIcon.tsx @@ -3,66 +3,33 @@ import createIcon from './createIcon' export default createIcon(({ size, color }) => ( - - - - - - - - - - - diff --git a/src/components/icons/ProtectedCluster.tsx b/src/components/icons/ProtectedCluster.tsx deleted file mode 100644 index 60c4950f..00000000 --- a/src/components/icons/ProtectedCluster.tsx +++ /dev/null @@ -1,45 +0,0 @@ -import createIcon from './createIcon' - -export default createIcon(({ size, color }) => ( - - - - - - - - - -)) diff --git a/src/components/icons/ProtectedClusterIcon.tsx b/src/components/icons/ProtectedClusterIcon.tsx index 56b902f3..f3d41a7f 100644 --- a/src/components/icons/ProtectedClusterIcon.tsx +++ b/src/components/icons/ProtectedClusterIcon.tsx @@ -3,53 +3,70 @@ import createIcon from './createIcon' export default createIcon(({ size, color }) => ( - - - - + + + + + + + + + + + + - - - - + + + + + + + + )) diff --git a/src/components/icons/ProtectedManagementClusterIcon.tsx b/src/components/icons/ProtectedManagementClusterIcon.tsx new file mode 100644 index 00000000..e45286d2 --- /dev/null +++ b/src/components/icons/ProtectedManagementClusterIcon.tsx @@ -0,0 +1,46 @@ +import createIcon from './createIcon' + +export default createIcon(({ size, color }) => ( + + + + + + + + + +)) diff --git a/src/components/icons/ReturnIcon.tsx b/src/components/icons/ReturnIcon.tsx index 03fe5681..b2759c3b 100644 --- a/src/components/icons/ReturnIcon.tsx +++ b/src/components/icons/ReturnIcon.tsx @@ -8,11 +8,23 @@ export default createIcon(({ size, color }) => ( fill="none" xmlns="http://www.w3.org/2000/svg" > - + + + + + + + + )) diff --git a/src/icons.ts b/src/icons.ts index bd213413..2787400f 100644 --- a/src/icons.ts +++ b/src/icons.ts @@ -123,6 +123,7 @@ export { default as MegaphoneIcon } from './components/icons/MegaphoneIcon' export { default as MessagesIcon } from './components/icons/MessagesIcon' export { default as MoreIcon } from './components/icons/MoreIcon' export { default as MsTeamsLogoIcon } from './components/icons/MsTeamsLogoIcon' +export { default as NamespaceIcon } from './components/icons/NamespaceIcon' export { default as NetworkInIcon } from './components/icons/NetworkInIcon' export { default as NetworkInterfaceIcon } from './components/icons/NetworkInterfaceIcon' export { default as NewMailIcon } from './components/icons/NewMailIcon' @@ -148,8 +149,8 @@ export { default as PrMergedIcon } from './components/icons/PrMergedIcon' export { default as ProjectIcon } from './components/icons/ProjectIcon' export { default as PrOpenIcon } from './components/icons/PrOpenIcon' export { default as PrQueueIcon } from './components/icons/PrQueueIcon' -export { default as ProtectedCluster } from './components/icons/ProtectedCluster' export { default as ProtectedClusterIcon } from './components/icons/ProtectedClusterIcon' +export { default as ProtectedManagementClusterIcon } from './components/icons/ProtectedManagementClusterIcon' export { default as PushPinIcon } from './components/icons/PushPinIcon' export { default as ReloadIcon } from './components/icons/ReloadIcon' export { default as RestoreIcon } from './components/icons/RestoreIcon'