iconList.tsx 691 B

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