/** * Message - Chat bubble * @category communication */ import type { IconDefinition } from '../../types'; export const message: IconDefinition = { name: 'message', category: 'communication', description: 'Message or comment (chat bubble)', tags: ['message', 'chat', 'comment', 'conversation', 'bubble'], svg: ` `, variants: { solid: ` `, duotone: ` `, glitch: ` `, }, }; export default message;