import {forwardRef} from 'react'; import {SvgIcon, SVGIconProps} from './svgIcon'; const IconRefresh = forwardRef((props, ref) => { return ( ); }); IconRefresh.displayName = 'IconRefresh'; export {IconRefresh};