Skip to content

Commit

Permalink
feat: Edge compute icon (#679)
Browse files Browse the repository at this point in the history
  • Loading branch information
maciaszczykm authored Jan 30, 2025
1 parent bc20fb5 commit a561456
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
46 changes: 46 additions & 0 deletions src/components/icons/EdgeComputeIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
import createIcon from './createIcon'

export default createIcon(({ size, color }) => (
<svg
width={size}
height={size}
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M4.15619 8.79004C3.94557 8.79004 3.7876 8.96908 3.7876 9.20781V10.8789H11.844C12.0547 10.8789 12.2126 10.6998 12.2126 10.4611V8.79004H4.15619ZM4.94604 10.4611C4.6301 10.4611 4.41947 10.2224 4.41947 9.86431C4.41947 9.50622 4.6301 9.26749 4.94604 9.26749C5.26198 9.26749 5.4726 9.50622 5.4726 9.86431C5.4726 10.1627 5.26198 10.4611 4.94604 10.4611ZM10.3697 10.2224H6.94698V9.44654H10.3697V10.2224Z"
fill={color}
/>
<path
d="M11.3828 8.79002C11.3828 8.54352 11.3294 8.34017 11.2426 8.17341M4.61816 8.79002C4.61816 8.14005 5.19514 7.68275 5.48363 7.53534C5.48363 7.53534 5.34232 6.33495 6.41972 5.89339C7.49712 5.45183 8.23895 6.58158 8.23895 6.58158C8.23895 6.58158 8.85712 5.99938 9.52829 6.3173C10.1995 6.63522 10.0935 7.48301 10.0935 7.48301C10.2587 7.49206 10.4875 7.54115 10.7065 7.65436"
stroke={color}
strokeWidth="0.466875"
/>
<path
d="M3.92539 14.5699L1.05347 6.92856M3.92539 14.5699H12.0195M3.92539 14.5699L5.72225 12.2849M1.05347 6.92856L8.04239 1.55371M1.05347 6.92856L3.45942 7.61601M8.04239 1.55371L15.0314 6.92856M8.04239 1.55371V4.00694M15.0314 6.92856L12.0195 14.5699M15.0314 6.92856L12.6253 7.61601M12.0195 14.5699L10.2644 12.2849"
stroke={color}
strokeWidth="0.578705"
/>
<path
d="M4 15.5C4.55228 15.5 5 15.0523 5 14.5C5 13.9477 4.55228 13.5 4 13.5C3.44772 13.5 3 13.9477 3 14.5C3 15.0523 3.44772 15.5 4 15.5Z"
fill={color}
/>
<path
d="M8 2.5C8.55228 2.5 9 2.05228 9 1.5C9 0.947715 8.55228 0.5 8 0.5C7.44772 0.5 7 0.947715 7 1.5C7 2.05228 7.44772 2.5 8 2.5Z"
fill={color}
/>
<path
d="M12 15.5C12.5523 15.5 13 15.0523 13 14.5C13 13.9477 12.5523 13.5 12 13.5C11.4477 13.5 11 13.9477 11 14.5C11 15.0523 11.4477 15.5 12 15.5Z"
fill={color}
/>
<path
d="M1 8C1.55228 8 2 7.55228 2 7C2 6.44772 1.55228 6 1 6C0.447715 6 0 6.44772 0 7C0 7.55228 0.447715 8 1 8Z"
fill={color}
/>
<path
d="M15 8C15.5523 8 16 7.55228 16 7C16 6.44772 15.5523 6 15 6C14.4477 6 14 6.44772 14 7C14 7.55228 14.4477 8 15 8Z"
fill={color}
/>
</svg>
))
1 change: 1 addition & 0 deletions src/icons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ export { default as DomainsIcon } from './components/icons/DomainsIcon'
export { default as DownloadIcon } from './components/icons/DownloadIcon'
export { default as DropdownArrowIcon } from './components/icons/DropdownArrowIcon'
export { default as DryRunIcon } from './components/icons/DryRunIcon'
export { default as EdgeComputeIcon } from './components/icons/EdgeComputeIcon'
export { default as EditIcon } from './components/icons/EditIcon'
export { default as EKSIcon } from './components/icons/EKSIcon'
export { default as EmojiHoverIcon } from './components/icons/EmojiHoverIcon'
Expand Down

0 comments on commit a561456

Please sign in to comment.