/** * Minimize Icon * @category navigation */ import type { IconDefinition } from '../../types'; export const minimize: IconDefinition = { name: 'minimize', category: 'navigation', description: 'Minimize/exit fullscreen', tags: ['minimize', 'exit-fullscreen', 'shrink', 'collapse'], svg: ` `, variants: { solid: ` `, duotone: ` `, glitch: ` `, }, }; export default minimize;