/** * Inbox - Inbox tray with arrow * @category communication */ import type { IconDefinition } from '../../types'; export const inbox: IconDefinition = { name: 'inbox', category: 'communication', description: 'Inbox (tray with arrow)', tags: ['inbox', 'tray', 'receive', 'download', 'messages'], svg: ` `, variants: { solid: ` `, duotone: ` `, glitch: ` `, }, }; export default inbox;