From ccdc091cc5c7ce39b4c057aa38a9ceea1a6c9af9 Mon Sep 17 00:00:00 2001 From: Marcin Maciaszczyk Date: Thu, 18 Jan 2024 14:17:39 +0100 Subject: [PATCH] feat: Add diff icons (#563) --- src/components/icons/DiffColumnIcon.tsx | 15 +++++++++++++++ src/components/icons/DiffUnifiedIcon.tsx | 15 +++++++++++++++ src/icons.ts | 2 ++ 3 files changed, 32 insertions(+) create mode 100644 src/components/icons/DiffColumnIcon.tsx create mode 100644 src/components/icons/DiffUnifiedIcon.tsx diff --git a/src/components/icons/DiffColumnIcon.tsx b/src/components/icons/DiffColumnIcon.tsx new file mode 100644 index 00000000..71c7e84e --- /dev/null +++ b/src/components/icons/DiffColumnIcon.tsx @@ -0,0 +1,15 @@ +import createIcon from './createIcon' + +export default createIcon(({ size, color }) => ( + + + +)) diff --git a/src/components/icons/DiffUnifiedIcon.tsx b/src/components/icons/DiffUnifiedIcon.tsx new file mode 100644 index 00000000..3ca171c8 --- /dev/null +++ b/src/components/icons/DiffUnifiedIcon.tsx @@ -0,0 +1,15 @@ +import createIcon from './createIcon' + +export default createIcon(({ size, color }) => ( + + + +)) diff --git a/src/icons.ts b/src/icons.ts index e77cce3a..eaeaef3b 100644 --- a/src/icons.ts +++ b/src/icons.ts @@ -51,6 +51,8 @@ export { default as CreditCardIcon } from './components/icons/CreditCardIcon' export { default as DashboardIcon } from './components/icons/DashboardIcon' export { default as DatabaseIcon } from './components/icons/DatabaseIcon' export { default as DeploymentIcon } from './components/icons/DeploymentIcon' +export { default as DiffColumnIcon } from './components/icons/DiffColumnIcon' +export { default as DiffUnifiedIcon } from './components/icons/DiffUnifiedIcon' export { default as DiscordIcon } from './components/icons/DiscordIcon' export { default as DockerTagIcon } from './components/icons/DockerTagIcon' export { default as DocumentIcon } from './components/icons/DocumentIcon'