26 lines
767 B
Vue
26 lines
767 B
Vue
<script setup lang="ts">
|
|
import type { PaginationEllipsisProps } from "reka-ui"
|
|
import type { HTMLAttributes } from "vue"
|
|
import { reactiveOmit } from "@vueuse/core"
|
|
import { MoreHorizontal } from "lucide-vue-next"
|
|
import { PaginationEllipsis } from "reka-ui"
|
|
import { cn } from "@/lib/utils"
|
|
|
|
const props = defineProps<PaginationEllipsisProps & { class?: HTMLAttributes["class"] }>()
|
|
|
|
const delegatedProps = reactiveOmit(props, "class")
|
|
</script>
|
|
|
|
<template>
|
|
<PaginationEllipsis
|
|
data-slot="pagination-ellipsis"
|
|
v-bind="delegatedProps"
|
|
:class="cn('flex size-9 items-center justify-center', props.class)"
|
|
>
|
|
<slot>
|
|
<MoreHorizontal class="size-4" />
|
|
<span class="sr-only">More pages</span>
|
|
</slot>
|
|
</PaginationEllipsis>
|
|
</template>
|