From 8b80a92cfb9f37312c4c9de92dc1fb1a1671431c Mon Sep 17 00:00:00 2001 From: Jake Laderman Date: Thu, 16 Jan 2025 14:56:11 -0500 Subject: [PATCH] feat: add delta up and down icons (#675) --- src/components/icons/DeltaDownIcon.tsx | 18 ++++++++++++++++++ src/components/icons/DeltaUpIcon.tsx | 18 ++++++++++++++++++ src/icons.ts | 2 ++ 3 files changed, 38 insertions(+) create mode 100644 src/components/icons/DeltaDownIcon.tsx create mode 100644 src/components/icons/DeltaUpIcon.tsx diff --git a/src/components/icons/DeltaDownIcon.tsx b/src/components/icons/DeltaDownIcon.tsx new file mode 100644 index 00000000..df684cb3 --- /dev/null +++ b/src/components/icons/DeltaDownIcon.tsx @@ -0,0 +1,18 @@ +import createIcon from './createIcon' + +export default createIcon(({ size, color }) => ( + + + +)) diff --git a/src/components/icons/DeltaUpIcon.tsx b/src/components/icons/DeltaUpIcon.tsx new file mode 100644 index 00000000..c9920c6c --- /dev/null +++ b/src/components/icons/DeltaUpIcon.tsx @@ -0,0 +1,18 @@ +import createIcon from './createIcon' + +export default createIcon(({ size, color }) => ( + + + +)) diff --git a/src/icons.ts b/src/icons.ts index 8bd3ea79..ed7b50f7 100644 --- a/src/icons.ts +++ b/src/icons.ts @@ -65,6 +65,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 DatadogLogoIcon } from './components/icons/DatadogLogoIcon' +export { default as DeltaDownIcon } from './components/icons/DeltaDownIcon' +export { default as DeltaUpIcon } from './components/icons/DeltaUpIcon' export { default as DeploymentIcon } from './components/icons/DeploymentIcon' export { default as DiffColumnIcon } from './components/icons/DiffColumnIcon' export { default as DiffUnifiedIcon } from './components/icons/DiffUnifiedIcon'