@patternfly/react-core
Version:
This library provides a set of common React components for use with the PatternFly reference implementation.
11 lines • 520 B
TypeScript
import * as React from 'react';
export interface WizardDrawerWrapperProps {
/** The wizard content */
children: React.ReactElement;
/** 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) => JSX.Element;
}
export declare const WizardDrawerWrapper: React.FunctionComponent<WizardDrawerWrapperProps>;
//# sourceMappingURL=WizardDrawerWrapper.d.ts.map