/**
 * 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 InfoCircle(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" transform="translate(2 2)">
        <g stroke="currentColor" strokeLinecap="round" strokeLinejoin="round">
          <circle cx={8.5} cy={8.5} r={8} />
          <path d="M8.5 12.5v-4h-1m0 4h2" />
        </g>
        <circle cx={8.5} cy={5.5} r={1} fill="currentColor" />
      </g>
    </svg>);

}