Files
nobat724_front/components/icons/LocationAdd.js
T
2024-10-11 01:16:52 +03:30

36 lines
1007 B
JavaScript

function LocationAdd({ active }) {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width="40"
height="40"
viewBox="0 0 40 40"
fill="none"
className="delay-500"
>
<path
d="M15.4165 18.333H24.5832"
stroke="#616161"
strokeWidth="1.5"
strokeLinecap="round"
className={active ? "stroke-[#FAFAFA] delay-500" : ""}
/>
<path
d="M20 22.9167V13.75"
stroke="#616161"
strokeWidth="1.5"
strokeLinecap="round"
className={active ? "stroke-[#FAFAFA] delay-500" : ""}
/>
<path
d="M6.0335 14.1497C9.31683 -0.283655 30.7002 -0.266988 33.9668 14.1663C35.8835 22.633 30.6168 29.7997 26.0002 34.233C22.6502 37.4663 17.3502 37.4663 13.9835 34.233C9.3835 29.7997 4.11683 22.6163 6.0335 14.1497Z"
stroke="#616161"
strokeWidth="1.5"
className={active ? "stroke-[#FAFAFA] delay-500" : ""}
/>
</svg>
);
}
export default LocationAdd;