21 lines
524 B
TypeScript
21 lines
524 B
TypeScript
const MapVectorIcon = () => {
|
|
return (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width="27"
|
|
height="25"
|
|
fill="none"
|
|
viewBox="0 0 27 25"
|
|
>
|
|
<path
|
|
fill="#00BED7"
|
|
stroke="#fff"
|
|
strokeWidth="1.931"
|
|
d="M2.057 20.798l10.47-18.483c.566-1 2.014-.981 2.554.034l9.881 18.568c.626 1.177-.524 2.507-1.779 2.057l-8.659-3.105a3.389 3.389 0 00-2.288 0l-8.419 3.02c-1.272.456-2.427-.915-1.76-2.091z"
|
|
></path>
|
|
</svg>
|
|
);
|
|
};
|
|
|
|
export default MapVectorIcon;
|