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