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