mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-10 15:58:38 +01:00
33 lines
986 B
Vue
33 lines
986 B
Vue
<script setup lang="ts">
|
|
import type { PaginationPrevProps } from 'reka-ui'
|
|
import type { HTMLAttributes } from 'vue'
|
|
import { cn } from '@/lib/utils'
|
|
import { buttonVariants, type ButtonVariants } from '@/components/ui/button'
|
|
import { reactiveOmit } from '@vueuse/core'
|
|
import { ChevronLeftIcon } from 'lucide-vue-next'
|
|
import { PaginationPrev, useForwardProps } from 'reka-ui'
|
|
|
|
const props = withDefaults(defineProps<PaginationPrevProps & {
|
|
size?: ButtonVariants['size']
|
|
class?: HTMLAttributes['class']
|
|
}>(), {
|
|
size: 'default',
|
|
})
|
|
|
|
const delegatedProps = reactiveOmit(props, 'class', 'size')
|
|
const forwarded = useForwardProps(delegatedProps)
|
|
</script>
|
|
|
|
<template>
|
|
<PaginationPrev
|
|
data-slot="pagination-previous"
|
|
:class="cn(buttonVariants({ variant: 'ghost', size }), 'gap-1 px-2.5 sm:pr-2.5', props.class)"
|
|
v-bind="forwarded"
|
|
>
|
|
<slot>
|
|
<ChevronLeftIcon />
|
|
<span class="hidden sm:block">Previous</span>
|
|
</slot>
|
|
</PaginationPrev>
|
|
</template>
|