mirror of
https://github.com/versia-pub/frontend.git
synced 2026-06-14 15:39:15 +02:00
11 lines
263 B
Vue
11 lines
263 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>
|