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

12 lines
294 B
Svelte

<script lang="ts">
import { Collapsible as CollapsiblePrimitive } from "bits-ui";
let {
ref = $bindable(null),
open = $bindable(false),
...restProps
}: CollapsiblePrimitive.RootProps = $props();
</script>
<CollapsiblePrimitive.Root bind:ref data-slot="collapsible" {...restProps} />