26 lines
551 B
Svelte
26 lines
551 B
Svelte
<script lang="ts">
|
|
import type { HTMLLiAttributes } from "svelte/elements";
|
|
import ChevronRight from "lucide-svelte/icons/chevron-right";
|
|
import { cn } from "$lib/components/utils.js";
|
|
|
|
type $$Props = HTMLLiAttributes & {
|
|
el?: HTMLLIElement;
|
|
};
|
|
|
|
export let el: $$Props["el"] = undefined;
|
|
let className: $$Props["class"] = undefined;
|
|
export { className as class };
|
|
</script>
|
|
|
|
<li
|
|
role="presentation"
|
|
aria-hidden="true"
|
|
class={cn("[&>svg]:size-3.5", className)}
|
|
bind:this={el}
|
|
{...$$restProps}
|
|
>
|
|
<slot>
|
|
<ChevronRight />
|
|
</slot>
|
|
</li>
|