export default function Location({
  width,
  height,
  className,
}: {
  width?: number;
  height?: number;
  className?: string;
}) {
  return (
    <svg
      width={width || 20}
      height={height || 20}
      viewBox="0 0 20 20"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
      className={className}
    >
      <path
        fillRule="evenodd"
        clipRule="evenodd"
        d="M2.91699 8.59797C2.91699 4.76475 6.12023 1.6665 9.99486 1.6665C13.8804 1.6665 17.0837 4.76475 17.0837 8.59797C17.0837 10.5296 16.3812 12.3229 15.2249 13.8428C13.9493 15.5194 12.3771 16.9802 10.6074 18.1269C10.2024 18.3919 9.83689 18.4118 9.39237 18.1269C7.61261 16.9802 6.0404 15.5194 4.77574 13.8428C3.61865 12.3229 2.91699 10.5296 2.91699 8.59797ZM7.66218 8.8138C7.66218 10.0979 8.71004 11.1079 9.99486 11.1079C11.2805 11.1079 12.3385 10.0979 12.3385 8.8138C12.3385 7.53967 11.2805 6.48053 9.99486 6.48053C8.71004 6.48053 7.66218 7.53967 7.66218 8.8138Z"
        fill="currentColor"
      />
    </svg>
  );
}
