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