UNPKG

antd

Version:

An enterprise-class UI design language and React-based implementation

21 lines (20 loc) 534 B
/// <reference types="react" /> import * as React from 'react'; export interface BreadcrumbItemProps { prefixCls?: string; separator?: React.ReactNode; href?: string; } export default class BreadcrumbItem extends React.Component<BreadcrumbItemProps, any> { static __ANT_BREADCRUMB_ITEM: boolean; static defaultProps: { prefixCls: string; separator: string; }; static propTypes: { prefixCls: any; separator: any; href: any; }; render(): JSX.Element | null; }