adui
Version:
<div> <img src="https://wxa.wxs.qq.com/mpweb/delivery/legacy/wxadtouch/upload/t1/od834zef_52939fc6.png" style="margin:40px 0 0 -8px; background-color: #fcfcfc; box-shadow: none;" /> </div>
27 lines (26 loc) • 620 B
TypeScript
import React from "react";
import Item from "./Item";
import "./style";
export type { IItemProps } from "./Item";
export interface IBreadcrumbProps {
[key: string]: any;
/**
* 子节点
*/
children?: React.ReactNode;
/**
* 附加类名
*/
className?: string;
/**
* 尺寸大小
*/
size?: "mini" | "small" | "medium" | "large";
}
/**
* 面包屑用于展示当前和历史的行为路径、所在位置,并能够依据线性逻辑进行返回。
*/
declare const Breadcrumb: React.FC<IBreadcrumbProps> & {
Item: typeof Item;
};
export default Breadcrumb;