Skip to content

DownloadIcon

const DownloadIcon: NamedExoticComponent<Omit<{ children: ReactNode; className?: string; color?: IconColor; decorative?: boolean; ref?: Ref<SVGSVGElement>; size?: IconSize; testId?: string; title?: string; }, "children">>

Defined in: src/components/Icons/DownloadIcon.tsx:27

Download icon component for file download actions.

A standard download icon commonly used for downloading files, exporting content, and save-to-device actions in editor interfaces.

Example

// Basic usage
<DownloadIcon />
// With custom size and color
<DownloadIcon size="lg" color="success" />
// In a download button
<Button icon={<DownloadIcon />}>Download</Button>