mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-06 00:18:20 +01:00
15 lines
266 B
Vue
15 lines
266 B
Vue
<script setup lang="ts">
|
|
import { SelectGroup, type SelectGroupProps } from "reka-ui";
|
|
|
|
const props = defineProps<SelectGroupProps>();
|
|
</script>
|
|
|
|
<template>
|
|
<SelectGroup
|
|
data-slot="select-group"
|
|
v-bind="props"
|
|
>
|
|
<slot />
|
|
</SelectGroup>
|
|
</template>
|