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 | 519x 308x | import { SvgIconProps } from "@mui/material";
const NewCheckedIcon = ({
height = 12,
width = 14,
fill = "#131212",
}: SvgIconProps) => {
return (
<svg
width="18"
height="19"
viewBox="0 0 18 19"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M7.23214 14L3.75 10.15M15 5.75C12.5612 8.34015 10.9838 10.0155 8.88281 12.2469"
stroke="#13A75A"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
};
export default NewCheckedIcon;
|