/**
* Microphone off icon
* @category media
*/
import type { IconDefinition } from '../../types';
export const micOff: IconDefinition = {
name: 'mic-off',
category: 'media',
description: 'Microphone off (with slash)',
tags: ['microphone', 'mic', 'mute', 'audio', 'off', 'disabled'],
svg: ``,
variants: {
solid: ``,
duotone: ``,
glitch: ``,
},
};
export default micOff;