Props for the OnboardingHighlight component.

interface OnboardingHighlightProps {
/** Whether the highlight is currently active and visible. */
isActive: boolean;
/** Spotlight configuration for the element to highlight. */
spotlight?: ElementSpotlight;
/** Callback fired when a highlighted action is completed. */
onActionComplete?: () => void;
}
interface OnboardingHighlightProps {
    isActive: boolean;
    spotlight?: ElementSpotlight;
    onActionComplete?: () => void;
}

Properties

isActive: boolean

Whether the highlight is currently active and visible.

spotlight?: ElementSpotlight

Spotlight configuration for the element to highlight.

onActionComplete?: () => void

Callback fired when a highlighted action is completed.