iconEllipse.tsx 397 B

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