Skip to content

Commit

Permalink
feat(autofix + issue summary) Add Seer icon (#80504)
Browse files Browse the repository at this point in the history
Adds a new icon that will be used later in Issue Summary and Autofix.
<img width="265" alt="Screenshot 2024-11-08 at 3 15 18 PM"
src="https://github.com/user-attachments/assets/04655c15-c20d-4d33-b597-379a0a48f59e">
<img width="381" alt="Screenshot 2024-11-08 at 3 17 43 PM"
src="https://github.com/user-attachments/assets/fceb1de6-482f-435e-8a6f-1f90124dde75">

---------

Co-authored-by: Jenn Mueng <[email protected]>
  • Loading branch information
roaga and jennmueng authored Nov 9, 2024
1 parent 4e77318 commit e08a4b7
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 0 deletions.
35 changes: 35 additions & 0 deletions static/app/icons/iconSeer.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
import {forwardRef} from 'react';

import type {SVGIconProps} from './svgIcon';
import {SvgIcon} from './svgIcon';

const IconSeer = forwardRef<SVGSVGElement, SVGIconProps>((props, ref) => {
return (
<SvgIcon {...props} ref={ref} viewBox="0 0 30 30">
<defs>
<style>
{`.cls-1 {
fill: none;
stroke: currentColor;
stroke-linecap: round;
stroke-linejoin: round;
stroke-width: 2px;
}`}
</style>
</defs>
<path
className="cls-1"
d="M14.0407,3.1458L3.5742,17.0376c-.2989.3967-.2327.9584.1501,1.2748l10.4917,8.6705c.3436.284.8405.2838,1.1839-.0005l10.4717-8.6691c.3827-.3169.4483-.8788.1488-1.2753L15.5235,3.1448c-.3719-.4922-1.1115-.4917-1.4828.001Z"
/>
<path
className="cls-1"
d="M14.1483,12.3135l-5.1122,4.0552c-.3332.2643-.314.6812.0426.9278l5.1121,3.5339c.3337.2307.8482.2312,1.1828.0012l5.1412-3.534c.359-.2468.3782-.6657.0427-.9303l-5.1411-4.0551c-.3449-.272-.9243-.2714-1.2682.0013Z"
/>
<line className="cls-1" x1="14.7558" y1="15.9343" x2="14.7558" y2="17.2053" />
</SvgIcon>
);
});

IconSeer.displayName = 'IconSeer';

export {IconSeer};
7 changes: 7 additions & 0 deletions static/app/icons/icons.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,13 @@ const SECTIONS: TSection[] = [
name: 'Timer',
defaultProps: {},
},
{
id: 'seer',
groups: ['product'],
keywords: ['ai'],
name: 'Seer',
defaultProps: {},
},
],
},
{
Expand Down
1 change: 1 addition & 0 deletions static/app/icons/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down

0 comments on commit e08a4b7

Please sign in to comment.