-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(autofix + issue summary) Add Seer icon (#80504)
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
Showing
3 changed files
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters