Skip to content

Commit

Permalink
add eks and gke icons
Browse files Browse the repository at this point in the history
  • Loading branch information
maciaszczykm committed Aug 8, 2024
1 parent 17622a7 commit c359063
Show file tree
Hide file tree
Showing 3 changed files with 82 additions and 0 deletions.
41 changes: 41 additions & 0 deletions src/components/icons/EKSIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
import createIcon from './createIcon'

export default createIcon(({ size }) => (
<svg
width={size}
height={size}
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<g clipPath="url(#clip0_4976_27653)">
<path
d="M9.72283 5.90159L7.8677 8.05354L9.88608 10.4075H9.13241L7.32051 8.29294V10.4662H6.7772V5.84739H7.32051V7.74898L9.00014 5.90159H9.72283ZM14.3849 10.2578L12.211 8.95369V5.84739C12.2112 5.75063 12.1598 5.66112 12.0761 5.61251L8.9511 3.78964V1.16148L14.3842 4.37231L14.3849 10.2578ZM14.7946 3.98322L8.81753 0.452334C8.6877 0.376425 8.52092 0.420132 8.44501 0.549956C8.42088 0.591223 8.40804 0.638116 8.40778 0.685919V3.94644C8.40778 4.04323 8.4594 4.13227 8.542 4.18067L11.6677 6.00418V9.1079C11.6674 9.20367 11.7177 9.29247 11.7999 9.34149L14.5165 10.9714C14.6444 11.0491 14.8111 11.0084 14.8888 10.8805C14.9148 10.8377 14.9284 10.7885 14.9282 10.7385V4.21745C14.9284 4.12119 14.8776 4.03203 14.7946 3.98322ZM7.98514 15.3192L1.61509 11.9329V4.37231L7.04886 1.16148V3.79674L4.18647 5.61832C4.10823 5.66824 4.0608 5.75458 4.06064 5.84739V10.4662C4.06052 10.5673 4.11675 10.6601 4.20647 10.7069L7.86189 12.6091C7.94017 12.6497 8.03333 12.6497 8.11161 12.6091L11.658 10.7766L13.8403 12.0864L7.98514 15.3192ZM14.5249 11.8632L11.8083 10.2332C11.7274 10.1844 11.6269 10.1812 11.5431 10.2249L7.98772 12.0619L4.60395 10.301V5.99709L7.46634 4.17486C7.54458 4.12494 7.59201 4.0386 7.59217 3.94579V0.684629C7.59197 0.534598 7.47019 0.413133 7.32016 0.41333C7.27171 0.413394 7.22415 0.426415 7.18243 0.451043L1.20535 3.98322C1.12248 4.03213 1.07168 4.12123 1.07178 4.21745V12.0961C1.07178 12.1968 1.12727 12.2891 1.21567 12.3362L7.85995 15.8683C7.9411 15.9112 8.03843 15.9103 8.1187 15.8658L14.5165 12.3342C14.6479 12.2611 14.6952 12.0953 14.6221 11.9639C14.599 11.9224 14.5655 11.8877 14.5249 11.8632Z"
fill="url(#paint0_linear_4976_27653)"
/>
</g>
<defs>
<linearGradient
id="paint0_linear_4976_27653"
x1="0.999512"
y1="7.00024"
x2="14.9995"
y2="7.00024"
gradientUnits="userSpaceOnUse"
>
<stop stopColor="#DF6440" />
<stop
offset="1"
stopColor="#E9973D"
/>
</linearGradient>
<clipPath id="clip0_4976_27653">
<rect
width="16"
height="16"
fill="white"
/>
</clipPath>
</defs>
</svg>
))
39 changes: 39 additions & 0 deletions src/components/icons/GKEIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
import createIcon from './createIcon'

export default createIcon(({ size }) => (
<svg
width={size}
height={size}
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<g clipPath="url(#clip0_5020_600)">
<path
d="M8.2999 4.09995V0.699951H7.6999V4.19995L4.8999 5.79995L7.9999 7.49995L11.0999 5.69995L8.2999 4.09995Z"
fill="#7CADF9"
/>
<path
d="M13.9999 11.1999L11.3999 9.6999V6.3999L8.3999 8.1999V11.7999L11.1999 10.1999L13.7999 11.6999L13.9999 11.1999Z"
fill="#1467F0"
/>
<path
d="M7.60005 8.1999L4.50005 6.3999V9.5999L1.80005 11.1999L2.10005 11.6999L4.80005 10.0999L7.60005 11.6999V8.1999Z"
fill="#3381F4"
/>
<path
d="M14.9001 12V4L8.0001 0L1.1001 4V12L8.0001 16L14.9001 12ZM8.0001 14.2L2.6001 11.1V4.9L8.0001 1.8L13.4001 4.9V11.1L8.0001 14.2Z"
fill="#7CADF9"
/>
</g>
<defs>
<clipPath id="clip0_5020_600">
<rect
width="16"
height="16"
fill="white"
/>
</clipPath>
</defs>
</svg>
))
2 changes: 2 additions & 0 deletions src/icons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ 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 EditIcon } from './components/icons/EditIcon'
export { default as EKSIcon } from './components/icons/EKSIcon'
export { default as EmojiHoverIcon } from './components/icons/EmojiHoverIcon'
export { default as EmojiIcon } from './components/icons/EmojiIcon'
export { default as ErrorIcon } from './components/icons/ErrorIcon'
Expand All @@ -89,6 +90,7 @@ export { default as GitHubLogoIcon } from './components/icons/GitHubLogoIcon'
export { default as GitLabLogoIcon } from './components/icons/GitLabLogoIcon'
export { default as GitMergeIcon } from './components/icons/GitMergeIcon'
export { default as GitPullIcon } from './components/icons/GitPullIcon'
export { default as GKEIcon } from './components/icons/GKEIcon'
export { default as GlobeIcon } from './components/icons/GlobeIcon'
export { default as GoogleCloudLogoIcon } from './components/icons/GoogleCloudLogoIcon'
export { default as GoogleLogoIcon } from './components/icons/GoogleLogoIcon'
Expand Down

0 comments on commit c359063

Please sign in to comment.