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