Skip to content

UndoIcon

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

Undo icon component for undo actions.

A standard curved arrow icon commonly used for undoing operations, reverting changes, and history navigation in editor interfaces.

Example

// Basic usage
<UndoIcon />
// With custom size and color
<UndoIcon size="md" color="secondary" />
// In an undo button
<Button icon={<UndoIcon />}>Undo</Button>