Files
Website/src/components/ui/breadcrumb/breadcrumb-list.svelte
2025-03-01 20:01:04 +01:00

24 lines
503 B
Svelte

<script lang="ts">
import type { HTMLOlAttributes } from "svelte/elements";
import { cn } from "$lib/components/utils.js";
type $$Props = HTMLOlAttributes & {
el?: HTMLOListElement;
};
export let el: $$Props["el"] = undefined;
let className: $$Props["class"] = undefined;
export { className as class };
</script>
<ol
bind:this={el}
class={cn(
"text-muted-foreground flex flex-wrap items-center gap-1.5 break-words text-sm sm:gap-2.5",
className
)}
{...$$restProps}
>
<slot />
</ol>