UNPKG

@mui/material

Version:

Material UI is an open-source React component library that implements Google's Material Design. It's comprehensive and can be used in production out of the box.

14 lines 508 B
export interface BreadcrumbsClasses { /** Styles applied to the root element. */ root: string; /** Styles applied to the ol element. */ ol: string; /** Styles applied to the li element. */ li: string; /** Styles applied to the separator element. */ separator: string; } export type BreadcrumbsClassKey = keyof BreadcrumbsClasses; export declare function getBreadcrumbsUtilityClass(slot: string): string; declare const breadcrumbsClasses: BreadcrumbsClasses; export default breadcrumbsClasses;