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 30 31 32 33 | import React from "react";
type VectorFillIconProps = {
height?: string | number;
width?: string | number;
color?: string;
};
export const VectorIcon = ({
color = "#9C9AA3",
height = 24,
width = 25,
}: VectorFillIconProps) => {
return (
<svg
width={width}
height={height}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M12.6352 6.35982L15.5002 9.79777C16.043 10.4491 15.5798 11.438 14.732 11.438L9.00206 11.438C8.15422 11.438 7.69106 10.4491 8.23384 9.79777L11.0988 6.35982C11.4986 5.88006 12.2354 5.88006 12.6352 6.35982Z"
fill={color}
/>
<path
d="M11.0986 18.5162L8.23369 15.0782C7.69092 14.4269 8.15407 13.438 9.00191 13.438L14.7318 13.438C15.5797 13.438 16.0428 14.4269 15.5001 15.0782L12.6351 18.5162C12.2353 18.9959 11.4984 18.9959 11.0986 18.5162Z"
fill={color}
/>
</svg>
);
};
|