@patternfly/react-core
Version:
This library provides a set of common React components for use with the PatternFly reference implementation.
15 lines • 628 B
TypeScript
import * as React from 'react';
export interface WizardBodyProps {
/** Anything that can be rendered in the Wizard body */
children: any;
/** Set to true to remove the default body padding */
hasNoBodyPadding: boolean;
/** An aria-label to use for the main element */
'aria-label'?: string;
/** Sets the aria-labelledby attribute for the main element */
'aria-labelledby': string;
/** Component used as the primary content container */
mainComponent?: React.ElementType;
}
export declare const WizardBody: React.FunctionComponent<WizardBodyProps>;
//# sourceMappingURL=WizardBody.d.ts.map