import * as React from "react";
import type { SVGProps } from "react";
const SvgUser = (props: SVGProps<SVGSVGElement>) => (
  <svg
    xmlns="http://www.w3.org/2000/svg"
    fill="#8a8a8a"
    viewBox="0 0 64 64"
    {...props}
  >
    <path d="M41.245 33.035a16 16 0 1 0-18.49 0A26.04 26.04 0 0 0 4 58a2 2 0 0 0 2 2h52a2 2 0 0 0 2-2 26.04 26.04 0 0 0-18.755-24.965M20 20a12 12 0 1 1 12 12 12.014 12.014 0 0 1-12-12M8.09 56A22.03 22.03 0 0 1 30 36h4a22.03 22.03 0 0 1 21.91 20Z" />
  </svg>
);
export default SvgUser;
