diff --git a/src/icons/index.ts b/src/icons/index.ts index e0a120914..e0733824a 100755 --- a/src/icons/index.ts +++ b/src/icons/index.ts @@ -177,6 +177,7 @@ export { VerticalDots } from './ui/VerticalDots'; export { Video } from './ui/Video'; export { VideoStack } from './ui/VideoStack'; export { VideoStackFilled } from './ui/VideoStackFilled'; +export { Wand } from './ui/Wand'; // // diff --git a/src/icons/ui/Wand.tsx b/src/icons/ui/Wand.tsx new file mode 100644 index 000000000..8ca810cc0 --- /dev/null +++ b/src/icons/ui/Wand.tsx @@ -0,0 +1,18 @@ +import React, { forwardRef, Ref, SVGAttributes } from 'react'; + +import { IrisIcon } from '../icons.types'; + +export const Wand: IrisIcon = forwardRef( + (props: SVGAttributes, ref: Ref) => ( + + + + ) +); + +Wand.tags = ['magic', 'autogenerate', 'enhancement', 'wand']; diff --git a/src/icons/ui/index.ts b/src/icons/ui/index.ts index 16321417e..e30b6b649 100755 --- a/src/icons/ui/index.ts +++ b/src/icons/ui/index.ts @@ -126,3 +126,4 @@ export { VerticalDots } from './VerticalDots'; export { Video } from './Video'; export { VideoStack } from './VideoStack'; export { VideoStackFilled } from './VideoStackFilled'; +export { Wand } from './Wand';