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