Initial commit

This commit is contained in:
2025-10-04 18:22:24 +03:00
commit 2852c2c054
291 changed files with 38109 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
interface LocationIconType {
className?: string;
onClick?: () => void;
}
const LocationIcon = ({ className, onClick }: LocationIconType) => {
return (
<svg
width="17"
height="16"
viewBox="0 0 17 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
className={className}
onClick={onClick}
>
<path
d="M8.49984 8.66683C9.60441 8.66683 10.4998 7.7714 10.4998 6.66683C10.4998 5.56226 9.60441 4.66683 8.49984 4.66683C7.39527 4.66683 6.49984 5.56226 6.49984 6.66683C6.49984 7.7714 7.39527 8.66683 8.49984 8.66683Z"
stroke="#5F6C7B"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M8.49984 14.6668C11.1665 12.0002 13.8332 9.61235 13.8332 6.66683C13.8332 3.72131 11.4454 1.3335 8.49984 1.3335C5.55432 1.3335 3.1665 3.72131 3.1665 6.66683C3.1665 9.61235 5.83317 12.0002 8.49984 14.6668Z"
stroke="#5F6C7B"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
};
export default LocationIcon;