mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
14 lines
298 B
Svelte
14 lines
298 B
Svelte
<div
|
|
class:bx--breadcrumb={true}
|
|
class:bx--skeleton={true}
|
|
{...$$restProps}
|
|
on:click
|
|
on:mouseover
|
|
on:mouseenter
|
|
on:mouseleave>
|
|
{#each [0, 1, 2] as item, i (item)}
|
|
<div class:bx--breadcrumb-item={true}>
|
|
<span class:bx--link={true}> </span>
|
|
</div>
|
|
{/each}
|
|
</div>
|