iconEllipsis.tsx 492 B

12345678910111213141516171819202122
  1. import React from 'react';
  2. import SvgIcon from './svgIcon';
  3. type Props = React.ComponentProps<typeof SvgIcon>;
  4. const IconEllipsis = React.forwardRef(function IconEllipsis(
  5. props: Props,
  6. ref: React.Ref<SVGSVGElement>
  7. ) {
  8. return (
  9. <SvgIcon {...props} ref={ref}>
  10. <circle cx="8" cy="8" r="1.31" />
  11. <circle cx="1.31" cy="8" r="1.31" />
  12. <circle cx="14.69" cy="8" r="1.31" />
  13. </SvgIcon>
  14. );
  15. });
  16. IconEllipsis.displayName = 'IconEllipsis';
  17. export {IconEllipsis};