export const AvatarIcon: React.FC<React.SVGAttributes<{}>> = (props) => {
  return (
    <svg
      width={32}
      height={41}
      viewBox="0 0 32 41"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
      {...props}
    >
      <path
        d="M23.142 30.63l7.162 3.907c.42.229.798.51 1.15.818A23.887 23.887 0 0115.998 41C10.154 41 4.8 38.907.635 35.434a6.35 6.35 0 011.263-.845l7.668-3.835a2.925 2.925 0 001.617-2.616v-3.01c-.216-.245-.462-.56-.726-.932a17.65 17.65 0 01-2.383-4.805A2.409 2.409 0 016.365 17.1v-3.212c0-.706.315-1.338.803-1.78V7.464S6.214.238 15.998.238c9.785 0 8.83 7.226 8.83 7.226v4.643c.49.442.803 1.074.803 1.78V17.1c0 .846-.444 1.591-1.11 2.021-.803 3.494-2.904 6.009-2.904 6.009v2.935c.001 1.069.586 2.053 1.525 2.566z"
        fill="currentColor"
      />
    </svg>
  );
}