antd
Version:
An enterprise-class UI design language and React components implementation
10 lines (9 loc) • 403 B
TypeScript
import React from 'react';
import type { SemanticClassNames, SemanticStyles } from '../_util/hooks';
export type SemanticName = 'root' | 'item' | 'separator';
export interface BreadcrumbContextProps {
classNames?: SemanticClassNames<SemanticName>;
styles?: SemanticStyles<SemanticName>;
}
declare const BreadcrumbContext: React.Context<BreadcrumbContextProps>;
export default BreadcrumbContext;