/** * Cloud Download Icon * @category data */ import type { IconDefinition } from '../../types'; export const cloudDownload: IconDefinition = { name: 'cloud-download', category: 'data', description: 'Download from cloud storage', tags: ['cloud', 'download', 'storage', 'data', 'transfer'], svg: ` `, variants: { solid: ` `, duotone: ` `, glitch: ` `, }, }; export default cloudDownload;