From 508282a109770c540aa0de529f8de79ac6a03b81 Mon Sep 17 00:00:00 2001 From: michaeljguarino Date: Sun, 28 Apr 2024 15:45:44 -0400 Subject: [PATCH] feat: Add Confetti Icon (#587) --- src/components/icons/ConfettiIcon.tsx | 54 +++++++++++++++++++++++++++ src/icons.ts | 1 + 2 files changed, 55 insertions(+) create mode 100644 src/components/icons/ConfettiIcon.tsx diff --git a/src/components/icons/ConfettiIcon.tsx b/src/components/icons/ConfettiIcon.tsx new file mode 100644 index 00000000..2532e01c --- /dev/null +++ b/src/components/icons/ConfettiIcon.tsx @@ -0,0 +1,54 @@ +import createIcon from './createIcon' + +export default createIcon(({ size, color }) => ( + + + + + + + + + +)) diff --git a/src/icons.ts b/src/icons.ts index ddb53ab8..f6baa766 100644 --- a/src/icons.ts +++ b/src/icons.ts @@ -43,6 +43,7 @@ export { default as CommandIcon } from './components/icons/CommandIcon' export { default as CompassIcon } from './components/icons/CompassIcon' export { default as ComponentsIcon } from './components/icons/ComponentsIcon' export { default as ComputerNodeIcon } from './components/icons/ComputerNodeIcon' +export { default as ConfettiIcon } from './components/icons/ConfettiIcon' export { default as ConsoleIcon } from './components/icons/ConsoleIcon' export { default as CookieIcon } from './components/icons/CookieIcon' export { default as CopyIcon } from './components/icons/CopyIcon'