UNPKG

@patternfly/react-core

Version:

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

11 lines 532 B
import type { JSX } from 'react'; export interface WizardDrawerWrapperProps { /** The wizard content */ children: React.ReactElement<any>; /** Flag indicating the wizard has a drawer for at least one of the wizard steps */ hasDrawer: boolean; /** The drawer component which wraps the wizard content */ wrapper: (children: React.ReactElement<any>) => JSX.Element; } export declare const WizardDrawerWrapper: React.FunctionComponent<WizardDrawerWrapperProps>; //# sourceMappingURL=WizardDrawerWrapper.d.ts.map