1
0

ActionChannel.tsx 780 B

1234567891011121314151617
  1. // THIS FILE WAS AUTOGENERATED BY SVGR. DO NOT MODIFY IT MANUALLY;
  2. import { Ref, SVGProps, forwardRef, memo } from 'react'
  3. const SvgActionChannel = 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="M1 2a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v7a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2Zm7 6a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Z"
  9. fill="#F4F6F8"
  10. />
  11. <path d="M8 12a4.002 4.002 0 0 0-3.874 3h7.748A4.002 4.002 0 0 0 8 12Z" fill="#F4F6F8" />
  12. </svg>
  13. ))
  14. SvgActionChannel.displayName = 'SvgActionChannel'
  15. const Memo = memo(SvgActionChannel)
  16. export { Memo as SvgActionChannel }