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'