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