iconList.tsx 724 B

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