2024-08-12 11:00:25 +02:00
|
|
|
<script lang="ts">
|
|
|
|
|
import Ellipsis from "lucide-svelte/icons/ellipsis";
|
|
|
|
|
import type { HTMLAttributes } from "svelte/elements";
|
|
|
|
|
import { cn } from "$lib/utils/style.js";
|
|
|
|
|
|
|
|
|
|
type $$Props = HTMLAttributes<HTMLSpanElement>;
|
|
|
|
|
|
|
|
|
|
let className: $$Props["class"] = undefined;
|
|
|
|
|
export { className as class };
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<span
|
2024-11-02 00:04:27 +01:00
|
|
|
aria-hidden="true"
|
2024-08-12 11:00:25 +02:00
|
|
|
class={cn("flex h-9 w-9 items-center justify-center", className)}
|
|
|
|
|
{...$$restProps}
|
|
|
|
|
>
|
|
|
|
|
<Ellipsis class="h-4 w-4" />
|
|
|
|
|
<span class="sr-only">More pages</span>
|
|
|
|
|
</span>
|