@mui/joy
Version:
Joy UI is an open-source React component library that implements MUI's own design principles. It's comprehensive and can be used in production out of the box.
19 lines (18 loc) • 854 B
TypeScript
export interface ListDividerClasses {
/** Class name applied to the root element. */
root: string;
/** Class name applied to the root element if `inset="gutter"`. */
insetGutter: string;
/** Class name applied to the root element if `inset="startDecorator"`. */
insetStartDecorator: string;
/** Class name applied to the root element if `inset="startContent"`. */
insetStartContent: string;
/** Class name applied to the root element if `orientation="horizontal"`. */
horizontal: string;
/** Class name applied to the root element if `orientation="vertical"`. */
vertical: string;
}
export type ListDividerClassKey = keyof ListDividerClasses;
export declare function getListDividerUtilityClass(slot: string): string;
declare const listDividerClasses: ListDividerClasses;
export default listDividerClasses;