iconList.tsx 664 B

1234567891011121314151617181920
  1. import * as React from 'react';
  2. import SvgIcon, {SVGIconProps} from './svgIcon';
  3. const IconList = React.forwardRef<SVGSVGElement, SVGIconProps>((props, ref) => {
  4. return (
  5. <SvgIcon {...props} ref={ref}>
  6. <path d="M15.19,8.75H3.7a.75.75,0,1,1,0-1.5H15.19a.75.75,0,0,1,0,1.5Z" />
  7. <circle cx="0.75" cy="8" r="0.75" />
  8. <path d="M15.19,15H3.7a.75.75,0,1,1,0-1.5H15.19a.75.75,0,1,1,0,1.5Z" />
  9. <circle cx="0.75" cy="14.25" r="0.75" />
  10. <path d="M15.19,2.53H3.7A.75.75,0,0,1,3.7,1H15.19a.75.75,0,1,1,0,1.5Z" />
  11. <circle cx="0.75" cy="1.75" r="0.75" />
  12. </SvgIcon>
  13. );
  14. });
  15. IconList.displayName = 'IconList';
  16. export {IconList};