mirror of https://github.com/TZGyn/shortener
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
491 B
Svelte
20 lines
491 B
Svelte
<script lang="ts">
|
|
import Ellipsis from "lucide-svelte/icons/ellipsis";
|
|
import type { HTMLAttributes } from "svelte/elements";
|
|
import { cn } from "$lib/utils.js";
|
|
|
|
type $$Props = HTMLAttributes<HTMLSpanElement>;
|
|
|
|
let className: $$Props["class"] = undefined;
|
|
export { className as class };
|
|
</script>
|
|
|
|
<span
|
|
aria-hidden
|
|
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>
|