import * as React from 'react';
import type { SVGProps } from 'react';
const SvgProfileIcon = (props: SVGProps<SVGSVGElement>) => (
  <svg xmlns="http://www.w3.org/2000/svg" width={16} height={16} {...props}>
    <path
      fill="currentColor"
      d="M10.561 9.073a6 6 0 0 1 3.432 5.142.75.75 0 1 1-1.498.07 4.5 4.5 0 0 0-8.99 0 .75.75 0 0 1-1.498-.07 6 6 0 0 1 3.431-5.142 3.999 3.999 0 1 1 5.123 0M10.5 6a2.5 2.5 0 1 0-5 0 2.5 2.5 0 0 0 5 0"
    />
  </svg>
);
export default SvgProfileIcon;
