You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
525 B
TypeScript

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;