/** * Download Icon * @category actions */ import type { IconDefinition } from '../../types'; export const download: IconDefinition = { name: 'download', category: 'actions', description: 'Download file or data', tags: ['download', 'save', 'export', 'arrow-down', 'fetch'], svg: ` `, variants: { solid: ` `, duotone: ` `, glitch: ` `, }, }; export default download;