mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-17 19:21:26 +00:00
30 lines
695 B
Svelte
30 lines
695 B
Svelte
<script>
|
|
/**
|
|
* Set to `true` to hide the breadcrumb trailing slash
|
|
* @type {boolean} [noTrailingSlash=false]
|
|
*/
|
|
export let noTrailingSlash = false;
|
|
|
|
/**
|
|
* Specify the number of breadcrumb items to render
|
|
* @type {number} [count=3]
|
|
*/
|
|
export let count = 3;
|
|
</script>
|
|
|
|
<div
|
|
class:bx--breadcrumb="{true}"
|
|
class:bx--breadcrumb--no-trailing-slash="{noTrailingSlash}"
|
|
class:bx--skeleton="{true}"
|
|
{...$$restProps}
|
|
on:click
|
|
on:mouseover
|
|
on:mouseenter
|
|
on:mouseleave
|
|
>
|
|
{#each Array.from({ length: count }, (_, i) => i) as item, i (item)}
|
|
<div class:bx--breadcrumb-item="{true}">
|
|
<span class:bx--link="{true}"> </span>
|
|
</div>
|
|
{/each}
|
|
</div>
|