diff --git a/static/app/icons/iconSeer.tsx b/static/app/icons/iconSeer.tsx new file mode 100644 index 00000000000000..1a34c204d24aec --- /dev/null +++ b/static/app/icons/iconSeer.tsx @@ -0,0 +1,35 @@ +import {forwardRef} from 'react'; + +import type {SVGIconProps} from './svgIcon'; +import {SvgIcon} from './svgIcon'; + +const IconSeer = forwardRef((props, ref) => { + return ( + + + + + + + + + ); +}); + +IconSeer.displayName = 'IconSeer'; + +export {IconSeer}; diff --git a/static/app/icons/icons.stories.tsx b/static/app/icons/icons.stories.tsx index 18e90f1e8d9fb6..2d04d604db7181 100644 --- a/static/app/icons/icons.stories.tsx +++ b/static/app/icons/icons.stories.tsx @@ -147,6 +147,13 @@ const SECTIONS: TSection[] = [ name: 'Timer', defaultProps: {}, }, + { + id: 'seer', + groups: ['product'], + keywords: ['ai'], + name: 'Seer', + defaultProps: {}, + }, ], }, { diff --git a/static/app/icons/index.tsx b/static/app/icons/index.tsx index 095ac99a837587..0a2363b29fb18a 100644 --- a/static/app/icons/index.tsx +++ b/static/app/icons/index.tsx @@ -88,6 +88,7 @@ export {IconReturn} from './iconReturn'; export {IconRewind10} from './iconRewind10'; export {IconSad} from './iconSad'; export {IconSearch} from './iconSearch'; +export {IconSeer} from './iconSeer'; export {IconSentry} from './iconSentry'; export {IconSettings} from './iconSettings'; export {IconShow} from './iconShow';