26 lines
785 B
Vue
26 lines
785 B
Vue
<script setup lang="ts">
|
|
import type { SelectScrollDownButtonProps } from 'radix-vue'
|
|
import type { HTMLAttributes } from 'vue'
|
|
import { SelectScrollDownButton, useForwardProps } from 'radix-vue'
|
|
import { computed } from 'vue'
|
|
import { cn } from '~/lib/utils'
|
|
|
|
const props = defineProps<SelectScrollDownButtonProps & { class?: HTMLAttributes['class'] }>()
|
|
|
|
const delegatedProps = computed(() => {
|
|
const { class: _, ...delegated } = props
|
|
|
|
return delegated
|
|
})
|
|
|
|
const forwardedProps = useForwardProps(delegatedProps)
|
|
</script>
|
|
|
|
<template>
|
|
<SelectScrollDownButton v-bind="forwardedProps" :class="cn('flex cursor-default items-center justify-center py-1', props.class)">
|
|
<slot>
|
|
<Icon name="i-radix-icons-chevron-down" />
|
|
</slot>
|
|
</SelectScrollDownButton>
|
|
</template>
|