frovide.com/src/lib/components/ui/select/select-group.svelte
Insub Kim 91426ef89b
All checks were successful
main-branch-frovide/pipeline/head This commit looks good
shad-cn component 적용
suit 웹폰트 적용
2025-06-07 02:09:03 +09:00

8 lines
236 B
Svelte

<script lang="ts">
import { Select as SelectPrimitive } from "bits-ui";
let { ref = $bindable(null), ...restProps }: SelectPrimitive.GroupProps = $props();
</script>
<SelectPrimitive.Group data-slot="select-group" {...restProps} />