Skip to content

Commit

Permalink
feat: add virtual cluster icon
Browse files Browse the repository at this point in the history
  • Loading branch information
floreks committed Oct 2, 2024
1 parent a3e5720 commit afb38cc
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/components/icons/VirtualCluster.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import createIcon from './createIcon'

export default createIcon(({ size, color = '#E0E3E5', fullColor = true }) => (
<svg
width={size}
height={size}
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M8.7581 7.45972L7.27211 4.8787L10.0523 0L13.0015 0.0133023L8.7581 7.45972ZM6.75997 3.23767L8.22322 0.643344H2.7149C1.38345 0.643344 0.545501 2.07798 1.19959 3.23767H6.75997ZM5.61211 4.52158L2.66285 4.53488L6.90629 11.9813L8.39229 9.40028L5.61211 4.52158Z"
fill={fullColor ? '#F27405' : color}
/>
</svg>
))
1 change: 1 addition & 0 deletions src/icons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit afb38cc

Please sign in to comment.