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