mango-v4-ui/components/icons/PinFill.tsx

15 lines
964 B
XML

const PinFill = ({ className }: { className?: string }) => {
return (
<svg
className={`${className}`}
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 32 32"
fill="currentColor"
>
<path d="M18.0554 5.63974L12.6698 11.7679L12.457 11.6451C12.0703 11.4219 11.5825 11.482 11.2617 11.7924L7.52448 15.4083C7.04701 15.8703 7.14445 16.6608 7.71982 16.993L12.6339 19.8301L9.63393 25.0263C9.35779 25.5046 9.52166 26.1162 9.99995 26.3923C10.4782 26.6685 11.0898 26.5046 11.366 26.0263L14.366 20.8301L19.28 23.6673C19.8554 23.9994 20.5887 23.6886 20.7501 23.0441L22.0129 17.9997C22.1213 17.5665 21.9295 17.114 21.5428 16.8908L21.33 16.7679L23.9444 9.03974L24.464 9.33974C24.9423 9.61588 25.5539 9.45201 25.83 8.97371C26.1062 8.49542 25.9423 7.88383 25.464 7.60769L18.5358 3.60769C18.0575 3.33154 17.4459 3.49542 17.1698 3.97371C16.8936 4.45201 17.0575 5.0636 17.5358 5.33974L18.0554 5.63974Z" />
</svg>
)
}
export default PinFill