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