diff options
Diffstat (limited to 'src/lib/icons.tsx')
-rw-r--r-- | src/lib/icons.tsx | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/lib/icons.tsx b/src/lib/icons.tsx index e194e7a87..fd233f99c 100644 --- a/src/lib/icons.tsx +++ b/src/lib/icons.tsx @@ -801,3 +801,30 @@ export function SquarePlusIcon({ </Svg> ) } + +export function InfoCircleIcon({ + style, + size, + strokeWidth = 1.5, +}: { + style?: StyleProp<TextStyle> + size?: string | number + strokeWidth?: number +}) { + return ( + <Svg + fill="none" + viewBox="0 0 24 24" + strokeWidth={strokeWidth} + stroke="currentColor" + width={size} + height={size} + style={style}> + <Path + strokeLinecap="round" + strokeLinejoin="round" + d="M11.25 11.25l.041-.02a.75.75 0 011.063.852l-.708 2.836a.75.75 0 001.063.853l.041-.021M21 12a9 9 0 11-18 0 9 9 0 0118 0zm-9-3.75h.008v.008H12V8.25z" + /> + </Svg> + ) +} |