ae0acf84d0
Standardize import paths across UI components to use ~/lib/utils alias instead of @/lib/utils for better consistency and maintainability.
30 lines
781 B
Vue
30 lines
781 B
Vue
<script setup lang="ts">
|
|
import type { PaginationFirstProps } from 'radix-vue'
|
|
import type { HTMLAttributes } from 'vue'
|
|
import { PaginationFirst } from 'radix-vue'
|
|
import { computed } from 'vue'
|
|
import { Button } from '~/components/pub/ui/button'
|
|
import { cn } from '~/lib/utils'
|
|
|
|
|
|
const props = withDefaults(defineProps<PaginationFirstProps & { class?: HTMLAttributes['class'] }>(), {
|
|
asChild: true,
|
|
})
|
|
|
|
const delegatedProps = computed(() => {
|
|
const { class: _, ...delegated } = props
|
|
|
|
return delegated
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<PaginationFirst v-bind="delegatedProps">
|
|
<Button :class="cn('h-9 w-9 p-0', props.class)" variant="outline">
|
|
<slot>
|
|
<Icon name="i-radix-icons-double-arrow-left" />
|
|
</slot>
|
|
</Button>
|
|
</PaginationFirst>
|
|
</template>
|