From 17622a78cb941d23276669f48922e150b9665796 Mon Sep 17 00:00:00 2001 From: Marcin Maciaszczyk Date: Thu, 8 Aug 2024 10:48:00 +0200 Subject: [PATCH 1/2] update stack run icons --- src/components/icons/StackRunCanceledIcon.tsx | 13 +++---- src/components/icons/StackRunIcon.tsx | 6 ++-- src/components/icons/StackRunPausedIcon.tsx | 35 +++++++------------ src/components/icons/StackRunPendingIcon.tsx | 13 +++---- 4 files changed, 29 insertions(+), 38 deletions(-) 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 }) => ( From c359063084f1532b65883af3ad9e94becf656306 Mon Sep 17 00:00:00 2001 From: Marcin Maciaszczyk Date: Thu, 8 Aug 2024 10:53:00 +0200 Subject: [PATCH 2/2] add eks and gke icons --- src/components/icons/EKSIcon.tsx | 41 ++++++++++++++++++++++++++++++++ src/components/icons/GKEIcon.tsx | 39 ++++++++++++++++++++++++++++++ src/icons.ts | 2 ++ 3 files changed, 82 insertions(+) create mode 100644 src/components/icons/EKSIcon.tsx create mode 100644 src/components/icons/GKEIcon.tsx 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/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'