Skip to content

UploadIcon

const UploadIcon: 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/UploadIcon.tsx:28

Upload icon component for upload actions.

A standard upload arrow icon commonly used for uploading files, importing data, and file transfer operations in editor interfaces.

Example

// Basic usage
<UploadIcon />
// With custom size and color
<UploadIcon size="lg" color="primary" />
// In an upload button
<Button icon={<UploadIcon />}>Upload</Button>