16 lines
401 B
Vue
16 lines
401 B
Vue
|
|
<!-- @fallthroughAttributes true -->
|
||
|
|
<!-- @strictTemplates true -->
|
||
|
|
|
||
|
|
<script setup lang="ts">
|
||
|
|
import type { HTMLAttributes } from "vue"
|
||
|
|
import { cn } from "@/lib/utils"
|
||
|
|
|
||
|
|
const props = defineProps<{ class?: HTMLAttributes["class"] }>()
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<option data-slot="native-select-option" :class="cn('bg-popover text-popover-foreground', props.class)">
|
||
|
|
<slot />
|
||
|
|
</option>
|
||
|
|
</template>
|