ControlsCancel.tsx 761 B

12345678910111213141516
  1. // THIS FILE WAS AUTOGENERATED BY SVGR. DO NOT MODIFY IT MANUALLY;
  2. import { Ref, SVGProps, forwardRef, memo } from 'react'
  3. const SvgControlsCancel = forwardRef((props: SVGProps<SVGSVGElement>, ref: Ref<SVGSVGElement>) => (
  4. <svg width={24} height={24} viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" ref={ref} {...props}>
  5. <path
  6. fillRule="evenodd"
  7. clipRule="evenodd"
  8. d="M2 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10S2 17.523 2 12Zm10 8A8 8 0 0 1 5.68 7.094L16.906 18.32A7.966 7.966 0 0 1 12 20Zm6.32-3.094A8 8 0 0 0 7.094 5.68L18.32 16.906Z"
  9. fill="#F4F6F8"
  10. />
  11. </svg>
  12. ))
  13. SvgControlsCancel.displayName = 'SvgControlsCancel'
  14. const Memo = memo(SvgControlsCancel)
  15. export { Memo as SvgControlsCancel }