/** * Phone - Phone call * @category communication */ import type { IconDefinition } from '../../types'; export const phone: IconDefinition = { name: 'phone', category: 'communication', description: 'Phone call', tags: ['phone', 'call', 'telephone', 'contact', 'voice'], svg: ` `, variants: { solid: ` `, duotone: ` `, glitch: ` `, }, }; export default phone;