diff --git a/src/components/icons/EKSIcon.tsx b/src/components/icons/EKSIcon.tsx new file mode 100644 index 00000000..d2e64669 --- /dev/null +++ b/src/components/icons/EKSIcon.tsx @@ -0,0 +1,41 @@ +import createIcon from './createIcon' + +export default createIcon(({ size }) => ( + + + + + + + + + + + + + + +)) diff --git a/src/components/icons/GKEIcon.tsx b/src/components/icons/GKEIcon.tsx new file mode 100644 index 00000000..9db2480f --- /dev/null +++ b/src/components/icons/GKEIcon.tsx @@ -0,0 +1,39 @@ +import createIcon from './createIcon' + +export default createIcon(({ size }) => ( + + + + + + + + + + + + + +)) diff --git a/src/components/icons/StackRunCanceledIcon.tsx b/src/components/icons/StackRunCanceledIcon.tsx index 5699037b..952cdf57 100644 --- a/src/components/icons/StackRunCanceledIcon.tsx +++ b/src/components/icons/StackRunCanceledIcon.tsx @@ -3,23 +3,24 @@ import createIcon from './createIcon' export default createIcon(({ size, color }) => ( @@ -28,8 +29,8 @@ export default createIcon(({ size, color }) => ( diff --git a/src/components/icons/StackRunIcon.tsx b/src/components/icons/StackRunIcon.tsx index b56ba87c..c36e0b3d 100644 --- a/src/components/icons/StackRunIcon.tsx +++ b/src/components/icons/StackRunIcon.tsx @@ -9,18 +9,18 @@ export default createIcon(({ size, color }) => ( xmlns="http://www.w3.org/2000/svg" > diff --git a/src/components/icons/StackRunPausedIcon.tsx b/src/components/icons/StackRunPausedIcon.tsx index 0e431f3b..3aa836bb 100644 --- a/src/components/icons/StackRunPausedIcon.tsx +++ b/src/components/icons/StackRunPausedIcon.tsx @@ -3,39 +3,28 @@ import createIcon from './createIcon' export default createIcon(({ size, color }) => ( - - - - + + - - - - - )) diff --git a/src/components/icons/StackRunPendingIcon.tsx b/src/components/icons/StackRunPendingIcon.tsx index 10b9beac..c4d11dbd 100644 --- a/src/components/icons/StackRunPendingIcon.tsx +++ b/src/components/icons/StackRunPendingIcon.tsx @@ -3,23 +3,24 @@ import createIcon from './createIcon' export default createIcon(({ size, color }) => ( @@ -28,8 +29,8 @@ export default createIcon(({ size, color }) => ( diff --git a/src/icons.ts b/src/icons.ts index 9eade0c2..b0210489 100644 --- a/src/icons.ts +++ b/src/icons.ts @@ -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' @@ -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'