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'