[READ-ONLY] Mirror of https://github.com/flo-bit/room. tiny 3d rooms saved locally or in your bluesky account, svelte/threlte flo-bit.dev/room/
0

Configure Feed

Select the types of activity you want to include in your feed.

room / src / lib / components / base / accordion / accordion-item.svelte
360 B 12 lines
1<script lang="ts"> 2 import { Accordion as AccordionPrimitive } from "bits-ui"; 3 import { cn } from "$lib/utils"; 4 5 let { 6 ref = $bindable(null), 7 class: className, 8 ...restProps 9 }: AccordionPrimitive.ItemProps = $props(); 10</script> 11 12<AccordionPrimitive.Item bind:ref class={cn("border-b border-base-200 dark:border-base-900", className)} {...restProps} />