Skip to content

SaveIcon

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

Save icon component for save actions.

A standard floppy disk icon commonly used for saving files, persisting data, and storage operations in editor interfaces.

Example

// Basic usage
<SaveIcon />
// With custom size and color
<SaveIcon size="lg" color="success" />
// In a save button
<Button icon={<SaveIcon />}>Save</Button>