mirror of
https://github.com/lemeow125/StudE-Frontend.git
synced 2025-04-19 00:11:22 +08:00
27 lines
745 B
TypeScript
27 lines
745 B
TypeScript
import * as React from "react";
|
|
import { IconProps } from "../../interfaces/Interfaces";
|
|
|
|
import { Svg, Path } from "react-native-svg";
|
|
import { colors } from "../../styles";
|
|
|
|
export default function InfoIcon(props: IconProps) {
|
|
return (
|
|
<>
|
|
<Svg
|
|
width={props.size}
|
|
height={props.size}
|
|
viewBox="0 0 24 24"
|
|
strokeWidth="2"
|
|
stroke={colors.icon_color}
|
|
fill="none"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
>
|
|
<Path stroke="none" d="M0 0h24v24H0z" fill="none"></Path>
|
|
<Path d="M12 9h.01"></Path>
|
|
<Path d="M11 12h1v4h1"></Path>
|
|
<Path d="M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"></Path>
|
|
</Svg>
|
|
</>
|
|
);
|
|
}
|