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