/**
 * 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 WarningCircle(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">
        <circle
        cx={10.5}
        cy={10.5}
        r={8}
        stroke="currentColor"
        strokeLinecap="round"
        strokeLinejoin="round" />

        <path
        stroke="currentColor"
        strokeLinecap="round"
        strokeLinejoin="round"
        d="M10.5 11.5v-5" />

        <circle cx={10.5} cy={14.5} r={1} fill="currentColor" />
      </g>
    </svg>);

}