UNPKG

@shoelace-style/shoelace

Version:

A forward-thinking library of web components.

22 lines (21 loc) 1.11 kB
import Component from '../../components/breadcrumb-item/breadcrumb-item.component.js'; /** * @summary Breadcrumb Items are used inside [breadcrumbs](/components/breadcrumb) to represent different links. * @documentation https://shoelace.style/components/breadcrumb-item * @status stable * @since 2.0 * * @slot - The breadcrumb item's label. * @slot prefix - An optional prefix, usually an icon or icon button. * @slot suffix - An optional suffix, usually an icon or icon button. * @slot separator - The separator to use for the breadcrumb item. This will only change the separator for this item. If * you want to change it for all items in the group, set the separator on `<sl-breadcrumb>` instead. * * @csspart base - The component's base wrapper. * @csspart label - The breadcrumb item's label. * @csspart prefix - The container that wraps the prefix. * @csspart suffix - The container that wraps the suffix. * @csspart separator - The container that wraps the separator. */ declare const reactWrapper: import("@lit/react").ReactWebComponent<Component, {}>; export default reactWrapper;