Files
clearity/src/lib/components/ui/breadcrumb/breadcrumb-item.svelte
T

21 lines
430 B
Svelte

<script lang="ts">
import type { HTMLLiAttributes } from 'svelte/elements';
import { cn, type WithElementRef } from '$lib/utils.js';
let {
ref = $bindable(null),
class: className,
children,
...restProps
}: WithElementRef<HTMLLiAttributes> = $props();
</script>
<li
bind:this={ref}
data-slot="breadcrumb-item"
class={cn('inline-flex items-center gap-1', className)}
{...restProps}
>
{@render children?.()}
</li>