/**
 * This file is automatically GENERATED.
 * Manual changes might be lost - proceed with caution!
 *
 * @flow strict
 */

import React, { type Element } from 'react';

type Props = {
  +'data-testid'?: string };


export default function UserCircle(props: Props): Element<'svg'> {
  return (
    <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 21 21" {...props}>
      <g
      fill="none"
      fillRule="evenodd"
      stroke="currentColor"
      strokeLinejoin="round"
      transform="translate(2 2)">

        <circle cx={8.5} cy={8.5} r={8} strokeLinecap="round" />
        <path strokeLinecap="round" d="m9.5 4.5 2 2v1a3 3 0 0 1-6 0v-1z" />
        <path d="M3.5 12V7.5a5 5 0 1 1 10 0V12" />
        <path
        strokeLinecap="round"
        d="M14.5 13.404c-.662-2.273-3.2-2.93-6-2.93-2.727 0-5.27.774-6 2.93" />

      </g>
    </svg>);

}