Files
madbase/control-plane-ui/node_modules/@mui/material/Divider/dividerClasses.d.ts
Vlad Durnea cffdf8af86
Some checks failed
CI/CD Pipeline / unit-tests (push) Failing after 1m16s
CI/CD Pipeline / integration-tests (push) Failing after 2m32s
CI/CD Pipeline / lint (push) Successful in 5m22s
CI/CD Pipeline / e2e-tests (push) Has been skipped
CI/CD Pipeline / build (push) Has been skipped
wip:milestone 0 fixes
2026-03-15 12:35:42 +02:00

39 lines
1.8 KiB
TypeScript

export interface DividerClasses {
/** Styles applied to the root element. */
root: string;
/** Styles applied to the root element if `absolute={true}`. */
absolute: string;
/** Styles applied to the root element if `variant="inset"`. */
inset: string;
/** Styles applied to the root element if `variant="fullWidth"`. */
fullWidth: string;
/** Styles applied to the root element if `light={true}`.
* @deprecated
*/
light: string;
/** Styles applied to the root element if `variant="middle"`. */
middle: string;
/** Styles applied to the root element if `orientation="vertical"`. */
vertical: string;
/** Styles applied to the root element if `flexItem={true}`. */
flexItem: string;
/** Styles applied to the root element if divider have text. */
withChildren: string;
/** Styles applied to the root element if divider have text and `orientation="vertical"`.
* @deprecated Combine the [.MuiDivider-withChildren](/material-ui/api/divider/#divider-classes-withChildren) and [.MuiDivider-vertical](/material-ui/api/divider/#divider-classes-vertical) classes instead.
*/
withChildrenVertical: string;
/** Styles applied to the root element if `textAlign="right" orientation="horizontal"`. */
textAlignRight: string;
/** Styles applied to the root element if `textAlign="left" orientation="horizontal"`. */
textAlignLeft: string;
/** Styles applied to the span children element if `orientation="horizontal"`. */
wrapper: string;
/** Styles applied to the span children element if `orientation="vertical"`. */
wrapperVertical: string;
}
export type DividerClassKey = keyof DividerClasses;
export declare function getDividerUtilityClass(slot: string): string;
declare const dividerClasses: DividerClasses;
export default dividerClasses;