UNPKG

1.33 kBTypeScriptView Raw
1export interface StepLabelClasses {
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 label element that wraps `children`. */
9 label: string;
10 /** State class applied to the label element if `active={true}`. */
11 active: string;
12 /** State class applied to the label element if `completed={true}`. */
13 completed: string;
14 /** State class applied to the root and label elements if `error={true}`. */
15 error: string;
16 /** State class applied to the root and label elements if `disabled={true}`. */
17 disabled: string;
18 /** Styles applied to the `icon` container element. */
19 iconContainer: string;
20 /** State class applied to the root and icon container and label if `alternativeLabel={true}`. */
21 alternativeLabel: string;
22 /** Styles applied to the container element which wraps label and `optional`. */
23 labelContainer: string;
24}
25export type StepLabelClassKey = keyof StepLabelClasses;
26export declare function getStepLabelUtilityClass(slot: string): string;
27declare const stepLabelClasses: StepLabelClasses;
28export default stepLabelClasses;