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