All checks were successful
main-branch-frovide/pipeline/head This commit looks good
suit 웹폰트 적용
8 lines
276 B
Svelte
8 lines
276 B
Svelte
<script lang="ts">
|
|
import { Collapsible as CollapsiblePrimitive } from "bits-ui";
|
|
|
|
let { ref = $bindable(null), ...restProps }: CollapsiblePrimitive.ContentProps = $props();
|
|
</script>
|
|
|
|
<CollapsiblePrimitive.Content bind:ref data-slot="collapsible-content" {...restProps} />
|