@patternfly/react-core
Version:
This library provides a set of common React components for use with the PatternFly reference implementation.
17 lines • 650 B
TypeScript
import * as React from 'react';
export interface SliderStepProps extends Omit<React.HTMLProps<HTMLDivElement>, 'label'> {
/** Additional classes added to the slider steps. */
className?: string;
/** Step value **/
value?: number;
/** Step label **/
label?: string;
/** Flag indicating that the tick should be hidden */
isTickHidden?: boolean;
/** Flag indicating that the label should be hidden */
isLabelHidden?: boolean;
/** Flag indicating the step is active */
isActive?: boolean;
}
export declare const SliderStep: React.FunctionComponent<SliderStepProps>;
//# sourceMappingURL=SliderStep.d.ts.map