shadcn-vue/apps/www/registry/new-york/ui/pagination/PaginationLast.vue
2024-11-21 11:52:31 +08:00

30 lines
768 B
Vue

<script setup lang="ts">
import {
Button,
} from '@/lib/registry/new-york/ui/button'
import { cn } from '@/lib/utils'
import { DoubleArrowRightIcon } from '@radix-icons/vue'
import { PaginationLast, type PaginationLastProps } from 'reka-ui'
import { computed, type HTMLAttributes } from 'vue'
const props = withDefaults(defineProps<PaginationLastProps & { class?: HTMLAttributes['class'] }>(), {
asChild: true,
})
const delegatedProps = computed(() => {
const { class: _, ...delegated } = props
return delegated
})
</script>
<template>
<PaginationLast v-bind="delegatedProps">
<Button :class="cn('w-9 h-9 p-0', props.class)" variant="outline">
<slot>
<DoubleArrowRightIcon />
</slot>
</Button>
</PaginationLast>
</template>