UNPKG

@patternfly/react-core

Version:

This library provides a set of common React components for use with the PatternFly reference implementation.

21 lines 846 B
import * as React from 'react'; export interface WizardHeaderProps { /** Callback function called when the X (Close) button is clicked */ onClose?: (event: React.MouseEvent<HTMLButtonElement>) => void; /** Title of the wizard */ title: string; /** Description of the wizard */ description?: React.ReactNode; /** Component type of the description */ descriptionComponent?: 'div' | 'p'; /** Flag indicating whether the close button should be in the header */ isCloseHidden?: boolean; /** Aria-label applied to the X (Close) button */ closeButtonAriaLabel?: string; /** id for the title */ titleId?: string; /** id for the description */ descriptionId?: string; } export declare const WizardHeader: React.FunctionComponent<WizardHeaderProps>; //# sourceMappingURL=WizardHeader.d.ts.map