worked on GarageApp stuff
This commit is contained in:
parent
60aaf17af3
commit
eb606572b0
51919 changed files with 2168177 additions and 18 deletions
28
node_modules/@mui/material/esm/StepLabel/stepLabelClasses.d.ts
generated
vendored
Normal file
28
node_modules/@mui/material/esm/StepLabel/stepLabelClasses.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
export interface StepLabelClasses {
|
||||
/** Styles applied to the root element. */
|
||||
root: string;
|
||||
/** Styles applied to the root element if `orientation="horizontal"`. */
|
||||
horizontal: string;
|
||||
/** Styles applied to the root element if `orientation="vertical"`. */
|
||||
vertical: string;
|
||||
/** Styles applied to the label element that wraps `children`. */
|
||||
label: string;
|
||||
/** State class applied to the label element if `active={true}`. */
|
||||
active: string;
|
||||
/** State class applied to the label element if `completed={true}`. */
|
||||
completed: string;
|
||||
/** State class applied to the root and label elements if `error={true}`. */
|
||||
error: string;
|
||||
/** State class applied to the root and label elements if `disabled={true}`. */
|
||||
disabled: string;
|
||||
/** Styles applied to the `icon` container element. */
|
||||
iconContainer: string;
|
||||
/** State class applied to the root and icon container and label if `alternativeLabel={true}`. */
|
||||
alternativeLabel: string;
|
||||
/** Styles applied to the container element which wraps label and `optional`. */
|
||||
labelContainer: string;
|
||||
}
|
||||
export type StepLabelClassKey = keyof StepLabelClasses;
|
||||
export declare function getStepLabelUtilityClass(slot: string): string;
|
||||
declare const stepLabelClasses: StepLabelClasses;
|
||||
export default stepLabelClasses;
|
||||
Loading…
Add table
Add a link
Reference in a new issue