// Generated by script, don't edit it please.
import * as React from 'react';

function ExclamationCircle2(
  props: React.SVGProps<SVGSVGElement>,
  svgRef?: React.Ref<SVGSVGElement>
) {
  return (
    <svg width="1em" height="1em" viewBox="0 0 32 32" fill="currentColor" ref={svgRef} {...props}>
      <path d="M16 0C7.163 0 0 7.163 0 16c0 8.839 7.163 16 16 16s16-7.161 16-16c0-8.837-7.163-16-16-16zm2 28h-4v-4h4v4zm.626-18L18 20h-4l-.624-10-.375-6h6.002l-.377 6z" />
    </svg>
  );
}

const ForwardRef = React.forwardRef(ExclamationCircle2);
export default ForwardRef;
