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