From 39d025acd7c7636a03f09136afd7a48d419045d6 Mon Sep 17 00:00:00 2001 From: Jake Laderman Date: Tue, 22 Oct 2024 12:33:50 -0400 Subject: [PATCH] add sparkle icon --- src/components/icons/AiSparkleFilledIcon.tsx | 19 +++++++++++++++++++ src/components/icons/AiSparkleOutlineIcon.tsx | 17 +++++++++++++++++ src/icons.ts | 2 ++ 3 files changed, 38 insertions(+) create mode 100644 src/components/icons/AiSparkleFilledIcon.tsx create mode 100644 src/components/icons/AiSparkleOutlineIcon.tsx diff --git a/src/components/icons/AiSparkleFilledIcon.tsx b/src/components/icons/AiSparkleFilledIcon.tsx new file mode 100644 index 00000000..51f5c363 --- /dev/null +++ b/src/components/icons/AiSparkleFilledIcon.tsx @@ -0,0 +1,19 @@ +import createIcon from './createIcon' + +export default createIcon(({ size, color }) => ( + + + +)) diff --git a/src/components/icons/AiSparkleOutlineIcon.tsx b/src/components/icons/AiSparkleOutlineIcon.tsx new file mode 100644 index 00000000..d43fb650 --- /dev/null +++ b/src/components/icons/AiSparkleOutlineIcon.tsx @@ -0,0 +1,17 @@ +import createIcon from './createIcon' + +export default createIcon(({ size, color }) => ( + + + +)) diff --git a/src/icons.ts b/src/icons.ts index 1a06e741..9965b392 100644 --- a/src/icons.ts +++ b/src/icons.ts @@ -1,3 +1,5 @@ +export { default as AiSparkleFilledIcon } from './components/icons/AiSparkleFilledIcon' +export { default as AiSparkleOutlineIcon } from './components/icons/AiSparkleOutlineIcon' export { default as AmazonLogoIcon } from './components/icons/AmazonLogoIcon' export { default as AnsibleIcon } from './components/icons/AnsibleIcon' export { default as ApiIcon } from './components/icons/ApiIcon'