20 lines
370 B
Vue
20 lines
370 B
Vue
<!-- @fallthroughAttributes true -->
|
|
<!-- @strictTemplates true -->
|
|
|
|
<script setup>
|
|
import { cn } from "@/lib/utils";
|
|
|
|
const props = defineProps({
|
|
class: { type: null, required: false },
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<option
|
|
data-slot="native-select-option"
|
|
:class="cn('bg-popover text-popover-foreground', props.class)"
|
|
>
|
|
<slot />
|
|
</option>
|
|
</template>
|