interface BreadcrumbItemProps {
    children?: ReactNode;
    className?: string;
    dropdownProps?: DropDownProps;
    href?: string;
    key?: Key;
    menu?: Omit<Antd.MenuProps, "items"> & {
        items?: MenuItem[];
    };
    onClick?: MouseEventHandler<HTMLAnchorElement | HTMLSpanElement>;
    overlay?: ReactElement<any, string | JSXElementConstructor<any>> | OverlayFunc;
    prefixCls?: string;
    separator?: ReactNode;
}

Hierarchy

  • SeparatorType
    • BreadcrumbItemProps

Properties

children?: ReactNode
className?: string
dropdownProps?: DropDownProps
href?: string
key?: Key
menu?: Omit<Antd.MenuProps, "items"> & {
    items?: MenuItem[];
}

Type declaration

  • Optional items?: MenuItem[]
onClick?: MouseEventHandler<HTMLAnchorElement | HTMLSpanElement>
overlay?: ReactElement<any, string | JSXElementConstructor<any>> | OverlayFunc

Deprecated

Please use menu instead

prefixCls?: string
separator?: ReactNode

Generated using TypeDoc