UNPKG

@eccenca/gui-elements

Version:

GUI elements based on other libraries, usable in React application, written in Typescript.

10 lines (9 loc) 564 B
import React from "react"; import { BreadcrumbProps as BlueprintBreadcrumbItemProps } from "@blueprintjs/core"; export type BreadcrumbItemProps = Omit<BlueprintBreadcrumbItemProps, "icon" | "iconTitle" | "intent" | "target">; /** * Item of the breadcrumbs list. * It cannot be used directly but the properties can be used within the elements of the `BreadcrumbList.items` property. */ export declare const BreadcrumbItem: ({ className, onClick, href, ...otherBlueprintBreadcrumbProps }: BreadcrumbItemProps) => React.JSX.Element; export default BreadcrumbItem;