ControlsSeekBackward5.tsx 691 B

12345678910111213141516
  1. // THIS FILE WAS AUTOGENERATED BY SVGR. DO NOT MODIFY IT MANUALLY;
  2. import { Ref, SVGProps, forwardRef, memo } from 'react'
  3. const SvgControlsSeekBackward5 = 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="M12 4a8 8 0 0 0-8 8H2C2 6.477 6.477 2 12 2v2Zm4 5-4 3 4 3V9Zm-5 0-4 3 4 3V9Z"
  9. fill="#F4F6F8"
  10. />
  11. </svg>
  12. ))
  13. SvgControlsSeekBackward5.displayName = 'SvgControlsSeekBackward5'
  14. const Memo = memo(SvgControlsSeekBackward5)
  15. export { Memo as SvgControlsSeekBackward5 }