/** * CPU Icon * @category tech */ import type { IconDefinition } from '../../types'; export const cpu: IconDefinition = { name: 'cpu', category: 'tech', description: 'CPU usage', tags: ['cpu', 'processor', 'usage', 'performance', 'computing'], svg: ` `, variants: { solid: ` `, duotone: ` `, glitch: ` `, }, }; export default cpu;