iconExpand.tsx 908 B

123456789101112131415161718
  1. import {forwardRef} from 'react';
  2. import {SvgIcon, SVGIconProps} from './svgIcon';
  3. const IconExpand = forwardRef<SVGSVGElement, SVGIconProps>((props, ref) => {
  4. return (
  5. <SvgIcon {...props} ref={ref}>
  6. <path d="M15.26,5.74c-.41,0-.75-.34-.75-.75V1.5h-3.49c-.41,0-.75-.34-.75-.75s.34-.75,.75-.75h4.24c.41,0,.75,.34,.75,.75V4.99c0,.41-.34,.75-.75,.75Z" />
  7. <path d="M.78,5.74C.36,5.74,.03,5.4,.03,4.99V.75C.03,.34,.36,0,.78,0H4.99c.41,0,.75,.34,.75,.75s-.34,.75-.75,.75H1.53v3.49c0,.41-.34,.75-.75,.75Z" />
  8. <path d="M15.23,16h-4.22c-.41,0-.75-.34-.75-.75s.34-.75,.75-.75h3.47v-3.47c0-.41,.34-.75,.75-.75s.75,.34,.75,.75v4.22c0,.41-.34,.75-.75,.75Z" />
  9. <path d="M4.97,16H.76C.34,16,0,15.66,0,15.25v-4.22c0-.41,.34-.75,.75-.75s.75,.34,.75,.75v3.47h3.47c.41,0,.75,.34,.75,.75s-.34,.75-.75,.75Z" />
  10. </SvgIcon>
  11. );
  12. });
  13. IconExpand.displayName = 'IconExpand';
  14. export {IconExpand};