/** * Globe Icon * @category tech */ import type { IconDefinition } from '../../types'; export const globe: IconDefinition = { name: 'globe', category: 'tech', description: 'Globe/world/internet', tags: ['globe', 'world', 'internet', 'web', 'network', 'global'], svg: ` `, variants: { solid: ` `, duotone: ` `, glitch: ` `, }, }; export default globe;