/** * Terminal Icon * @category tech */ import type { IconDefinition } from '../../types'; export const terminal: IconDefinition = { name: 'terminal', category: 'tech', description: 'Terminal/console window', tags: ['terminal', 'console', 'command', 'cli', 'shell'], svg: ` `, variants: { solid: ` `, duotone: ` `, glitch: ` `, }, }; export default terminal;