const ProfileIcon = ({
  className,
  width = "13",
  height = "14",
}: {
  className?: string;
  height?: string;
  width?: string;
}) => {
  return (
    <svg
      width={width}
      height={height}
      viewBox="0 0 13 14"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
      className={className}
    >
      <circle
        cx="6.5"
        cy="3.66602"
        r="2.5"
        stroke="currentColor"
        strokeWidth="1.3"
        strokeLinecap="round"
        strokeLinejoin="round"
      />
      <path
        d="M11.5 12.833C11.5 12.1764 11.3707 11.5262 11.1194 10.9196C10.8681 10.313 10.4998 9.76177 10.0355 9.29747C9.57124 8.83318 9.02004 8.46488 8.41342 8.21361C7.80679 7.96234 7.15661 7.83301 6.5 7.83301C5.84339 7.83301 5.19321 7.96234 4.58658 8.21361C3.97995 8.46488 3.42876 8.83318 2.96447 9.29747C2.50017 9.76177 2.13188 10.313 1.8806 10.9196C1.62933 11.5262 1.5 12.1764 1.5 12.833"
        stroke="currentColor"
        strokeWidth="1.3"
        strokeLinecap="round"
        strokeLinejoin="round"
      />
    </svg>
  );
};

export { ProfileIcon };
