22 lines
1.1 KiB
TypeScript
22 lines
1.1 KiB
TypeScript
|
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;
|