ActionExclamation.tsx 657 B

12345678910111213141516
  1. // THIS FILE WAS AUTOGENERATED BY SVGR. DO NOT MODIFY IT MANUALLY;
  2. import { Ref, SVGProps, forwardRef, memo } from 'react'
  3. const SvgActionExclamation = forwardRef((props: SVGProps<SVGSVGElement>, ref: Ref<SVGSVGElement>) => (
  4. <svg width={16} height={16} viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" ref={ref} {...props}>
  5. <path
  6. fillRule="evenodd"
  7. clipRule="evenodd"
  8. d="M8 14A6 6 0 1 0 8 2a6 6 0 0 0 0 12Zm1-4v2H7v-2h2Zm0-6v5H7V4h2Z"
  9. fill="#F4F6F8"
  10. />
  11. </svg>
  12. ))
  13. SvgActionExclamation.displayName = 'SvgActionExclamation'
  14. const Memo = memo(SvgActionExclamation)
  15. export { Memo as SvgActionExclamation }