iconTable.tsx 836 B

1234567891011121314151617181920
  1. import {forwardRef} from 'react';
  2. import type {SVGIconProps} from './svgIcon';
  3. import {SvgIcon} from './svgIcon';
  4. const IconTable = forwardRef<SVGSVGElement, SVGIconProps>((props, ref) => {
  5. return (
  6. <SvgIcon {...props} ref={ref}>
  7. <path d="M13.25,16H2.75c-1.52,0-2.75-1.23-2.75-2.75V2.75C0,1.23,1.23,0,2.75,0h10.5c1.52,0,2.75,1.23,2.75,2.75v10.5c0,1.52-1.23,2.75-2.75,2.75ZM2.75,1.5c-.69,0-1.25.56-1.25,1.25v10.5c0,.69.56,1.25,1.25,1.25h10.5c.69,0,1.25-.56,1.25-1.25V2.75c0-.69-.56-1.25-1.25-1.25H2.75Z" />
  8. <rect x=".75" y="5.08" width="14.5" height="1.5" />
  9. <rect x="9.67" y=".75" width="1.5" height="14.5" />
  10. <rect x=".75" y="8.16" width="14.5" height="1.5" />
  11. <rect x=".75" y="11.23" width="14.5" height="1.5" />
  12. </SvgIcon>
  13. );
  14. });
  15. IconTable.displayName = 'IconTable';
  16. export {IconTable};