mirror of
https://github.com/faiztyanirh/clqms-shadcn-v1.git
synced 2026-04-23 09:39:27 +07:00
22 lines
363 B
Svelte
22 lines
363 B
Svelte
<script>
|
|
import { cn } from "$lib/utils.js";
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
class: className,
|
|
children,
|
|
...restProps
|
|
} = $props();
|
|
</script>
|
|
|
|
<span
|
|
bind:this={ref}
|
|
data-slot="breadcrumb-page"
|
|
role="link"
|
|
aria-disabled="true"
|
|
aria-current="page"
|
|
class={cn("text-foreground font-normal", className)}
|
|
{...restProps}
|
|
>
|
|
{@render children?.()}
|
|
</span> |