/** * Bell - Notification bell * @category communication */ import type { IconDefinition } from '../../types'; export const bell: IconDefinition = { name: 'bell', category: 'communication', description: 'Notification bell', tags: ['notification', 'alert', 'reminder', 'bell'], svg: ` `, variants: { solid: ` `, duotone: ` `, glitch: ` `, }, }; export default bell;