Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | 3x 3x | import Svg, { Path } from "react-native-svg";
import { IconProps } from "@repo/types/icons";
import { colors } from "../themes";
export const TickCircleIcon = ({
width = 60,
height = 60,
color = colors.icon.primary,
}: IconProps) => (
<Svg width={width} height={height} viewBox="0 0 70 70" fill="none">
<Path
d="M34.9999 64.1663C51.0416 64.1663 64.1666 51.0413 64.1666 34.9997C64.1666 18.958 51.0416 5.83301 34.9999 5.83301C18.9583 5.83301 5.83325 18.958 5.83325 34.9997C5.83325 51.0413 18.9583 64.1663 34.9999 64.1663Z"
stroke={color}
strokeWidth="4"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M22.6042 35.0003L30.8584 43.2544L47.3959 26.7461"
stroke={color}
strokeWidth="5"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
|