iconEllipsis.tsx 460 B

123456789101112131415161718
  1. import {forwardRef} from 'react';
  2. import type {SVGIconProps} from './svgIcon';
  3. import {SvgIcon} from './svgIcon';
  4. const IconEllipsis = forwardRef<SVGSVGElement, SVGIconProps>((props, ref) => {
  5. return (
  6. <SvgIcon {...props} ref={ref}>
  7. <circle cx="8" cy="8" r="1.31" />
  8. <circle cx="1.31" cy="8" r="1.31" />
  9. <circle cx="14.69" cy="8" r="1.31" />
  10. </SvgIcon>
  11. );
  12. });
  13. IconEllipsis.displayName = 'IconEllipsis';
  14. export {IconEllipsis};