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