UNPKG

680 BTypeScriptView Raw
1export interface StepClasses {
2 /** Styles applied to the root element. */
3 root: string;
4 /** Styles applied to the root element if `orientation="horizontal"`. */
5 horizontal: string;
6 /** Styles applied to the root element if `orientation="vertical"`. */
7 vertical: string;
8 /** Styles applied to the root element if `alternativeLabel={true}`. */
9 alternativeLabel: string;
10 /** State class applied to the root element if `completed={true}`. */
11 completed: string;
12}
13export type StepClassKey = keyof StepClasses;
14export declare function getStepUtilityClass(slot: string): string;
15declare const stepClasses: StepClasses;
16export default stepClasses;