Skip to content

RedoIcon

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

Redo icon component for redo actions.

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

Example

// Basic usage
<RedoIcon />
// With custom size and color
<RedoIcon size="md" color="secondary" />
// In a redo button
<Button icon={<RedoIcon />}>Redo</Button>