UNPKG

@ucloud-fe/react-components

Version:
17 lines (16 loc) 470 B
import { AnchorHTMLAttributes } from 'react'; export interface ItemProps { /** 禁用 */ disabled?: boolean; /** 标明当前路由 */ current?: boolean; /** 标明节点无点击跳转事件 */ noAction?: boolean; /** @ignore */ href?: string; } declare const Item: { ({ disabled, onClick, href, ...rest }: ItemProps & AnchorHTMLAttributes<HTMLAnchorElement>): JSX.Element; __IS_BREADCRUMB_ITEM: boolean; }; export default Item;