/** * Bell Off - Notifications disabled * @category communication */ import type { IconDefinition } from '../../types'; export const bellOff: IconDefinition = { name: 'bell-off', category: 'communication', description: 'Notifications disabled (bell with slash)', tags: ['notification', 'disabled', 'mute', 'silent', 'off'], svg: ` `, variants: { solid: ` `, duotone: ` `, glitch: ` `, }, }; export default bellOff;