Initial commit
This commit is contained in:
33
src/components/Icons/LocationIcon.tsx
Normal file
33
src/components/Icons/LocationIcon.tsx
Normal 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;
|
||||
Reference in New Issue
Block a user