From afb38cc0dbfc7459b19cff56ba19c5131283ef5a Mon Sep 17 00:00:00 2001 From: Sebastian Florek Date: Wed, 2 Oct 2024 11:35:41 +0200 Subject: [PATCH] feat: add virtual cluster icon --- src/components/icons/VirtualCluster.tsx | 16 ++++++++++++++++ src/icons.ts | 1 + 2 files changed, 17 insertions(+) create mode 100644 src/components/icons/VirtualCluster.tsx diff --git a/src/components/icons/VirtualCluster.tsx b/src/components/icons/VirtualCluster.tsx new file mode 100644 index 00000000..5d485d32 --- /dev/null +++ b/src/components/icons/VirtualCluster.tsx @@ -0,0 +1,16 @@ +import createIcon from './createIcon' + +export default createIcon(({ size, color = '#E0E3E5', fullColor = true }) => ( + + + +)) diff --git a/src/icons.ts b/src/icons.ts index b0210489..789c5a53 100644 --- a/src/icons.ts +++ b/src/icons.ts @@ -207,6 +207,7 @@ export { default as UbuntuLogoIcon } from './components/icons/UbuntuLogoIcon' export { default as UpdatesIcon } from './components/icons/UpdatesIcon' export { default as VerifiedIcon } from './components/icons/VerifiedIcon' export { default as VideoIcon } from './components/icons/VideoIcon' +export { default as VirtualClusterIcon } from './components/icons/VirtualCluster' export { default as VolumesIcon } from './components/icons/VolumesIcon' export { default as WarningIcon } from './components/icons/WarningIcon' export { default as WarningOutlineIcon } from './components/icons/WarningOutlineIcon'