/** * Memory Icon * @category tech */ import type { IconDefinition } from '../../types'; export const memory: IconDefinition = { name: 'memory', category: 'tech', description: 'Memory/RAM module', tags: ['memory', 'ram', 'chip', 'hardware', 'storage'], svg: ` `, variants: { solid: ` `, duotone: ` `, glitch: ` `, }, }; export default memory;