iconCircleFill.tsx 401 B

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