import {forwardRef} from 'react'; import type {SVGIconProps} from './svgIcon'; import {SvgIcon} from './svgIcon'; const IconMute = forwardRef((props, ref) => { return ( ); }); IconMute.displayName = 'IconMute'; export {IconMute};