import * as React from 'react'; import SvgIcon from './svgIcon'; type Props = React.ComponentProps; const IconCircle = React.forwardRef(function IconCircle( props: Props, ref: React.Ref ) { return ( ); }); IconCircle.displayName = 'IconCircle'; export {IconCircle};