reablocks
Version:
Component library for React
14 lines (13 loc) • 511 B
TypeScript
export interface BreadcrumbsTheme {
/** CSS class applied to the root breadcrumbs container. */
base: string;
/** CSS class applied to the separator between breadcrumb items. */
separator: string;
/** CSS class applied to the breadcrumb list element. */
list: string;
/** CSS class applied to each breadcrumb link. */
link: string;
/** CSS class applied to the active (current) page item. */
activePage: string;
}
export declare const breadcrumbsTheme: BreadcrumbsTheme;