@patternfly/react-core
Version:
This library provides a set of common React components for use with the PatternFly reference implementation.
15 lines • 781 B
TypeScript
import * as React from 'react';
export interface ProgressStepperProps extends React.DetailedHTMLProps<React.OlHTMLAttributes<HTMLOListElement>, HTMLOListElement> {
/** Content rendered inside the progress stepper. */
children?: React.ReactNode;
/** Additional classes applied to the progress stepper container. */
className?: string;
/** Flag indicating the progress stepper should be centered. */
isCenterAligned?: boolean;
/** Flag indicating the progress stepper has a vertical layout. */
isVertical?: boolean;
/** Flag indicating the progress stepper should be rendered compactly. */
isCompact?: boolean;
}
export declare const ProgressStepper: React.FunctionComponent<ProgressStepperProps>;
//# sourceMappingURL=ProgressStepper.d.ts.map