34 lines
748 B
Svelte
34 lines
748 B
Svelte
|
|
<script lang="ts">
|
||
|
|
import { Pagination as PaginationPrimitive } from "bits-ui";
|
||
|
|
import ChevronLeftIcon from "@lucide/svelte/icons/chevron-left";
|
||
|
|
import { buttonVariants } from "$lib/components/ui/button/index.js";
|
||
|
|
import { cn } from "$lib/utils.js";
|
||
|
|
|
||
|
|
let {
|
||
|
|
ref = $bindable(null),
|
||
|
|
class: className,
|
||
|
|
children,
|
||
|
|
...restProps
|
||
|
|
}: PaginationPrimitive.PrevButtonProps = $props();
|
||
|
|
</script>
|
||
|
|
|
||
|
|
{#snippet Fallback()}
|
||
|
|
<ChevronLeftIcon class="size-4" />
|
||
|
|
<span>Previous</span>
|
||
|
|
{/snippet}
|
||
|
|
|
||
|
|
<PaginationPrimitive.PrevButton
|
||
|
|
bind:ref
|
||
|
|
aria-label="Go to previous page"
|
||
|
|
class={cn(
|
||
|
|
buttonVariants({
|
||
|
|
size: "default",
|
||
|
|
variant: "ghost",
|
||
|
|
class: "gap-1 px-2.5 sm:ps-2.5",
|
||
|
|
}),
|
||
|
|
className
|
||
|
|
)}
|
||
|
|
children={children || Fallback}
|
||
|
|
{...restProps}
|
||
|
|
/>
|