import * as React from 'react'; import { IconProps } from './types'; export const SpeakerOffIcon = React.forwardRef( ({ color = 'currentColor', ...props }, forwardedRef) => { return ( ); } ); export default SpeakerOffIcon;