/** * Send - Send message (paper plane) * @category communication */ import type { IconDefinition } from '../../types'; export const send: IconDefinition = { name: 'send', category: 'communication', description: 'Send message (paper plane)', tags: ['send', 'submit', 'message', 'plane', 'transmit'], svg: ` `, variants: { solid: ` `, duotone: ` `, glitch: ` `, }, }; export default send;