/**
* Volume off/muted icon
* @category media
*/
import type { IconDefinition } from '../../types';
export const volumeOff: IconDefinition = {
name: 'volume-off',
category: 'media',
description: 'Volume muted (speaker with X)',
tags: ['volume', 'mute', 'sound', 'audio', 'speaker', 'off'],
svg: ``,
variants: {
solid: ``,
duotone: ``,
glitch: ``,
},
};
export default volumeOff;