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

function ExclamationCircle(
  props: React.SVGProps<SVGSVGElement>,
  svgRef?: React.Ref<SVGSVGElement>
) {
  return (
    <svg width="1em" height="1em" viewBox="0 0 27 32" fill="currentColor" ref={svgRef} {...props}>
      <path d="M13.714 2.286c7.571 0 13.714 6.143 13.714 13.714s-6.143 13.714-13.714 13.714S0 23.571 0 16 6.143 2.286 13.714 2.286zM16 24.554v-3.393c0-.321-.25-.589-.554-.589h-3.429a.595.595 0 00-.589.589v3.393c0 .321.268.589.589.589h3.429c.304 0 .554-.268.554-.589zm-.036-6.143l.321-11.089a.358.358 0 00-.179-.321.69.69 0 00-.429-.143h-3.929a.692.692 0 00-.429.143.358.358 0 00-.179.321l.304 11.089c0 .25.268.446.607.446h3.304c.321 0 .589-.196.607-.446z" />
    </svg>
  );
}

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