carbon-components-svelte/src/Breadcrumb/BreadcrumbItem.svelte

40 lines
843 B
Svelte

<script>
/**
* @slot {{props?: { ["aria-current"]?: string; class: "bx--link"; }}}
*/
/**
* Set the `href` to use an anchor link
* @type {string}
*/
export let href = undefined;
/** Set to `true` if the breadcrumb item represents the current page */
export let isCurrentPage = false;
import Link from "../Link/Link.svelte";
</script>
<li
class:bx--breadcrumb-item="{true}"
class:bx--breadcrumb-item--current="{isCurrentPage &&
$$restProps['aria-current'] !== 'page'}"
{...$$restProps}
on:click
on:mouseover
on:mouseenter
on:mouseleave
>
{#if href}
<Link href="{href}" aria-current="{$$restProps['aria-current']}">
<slot />
</Link>
{:else}
<slot
props="{{
'aria-current': $$restProps['aria-current'],
class: 'bx--link',
}}"
/>
{/if}
</li>