Spaces:
Running
Running
| <script lang="ts"> | |
| import { ScrollArea as ScrollAreaPrimitive } from 'bits-ui'; | |
| import { cn, type WithoutChild } from '$lib/utils.js'; | |
| let { | |
| ref = $bindable(null), | |
| class: className, | |
| orientation = 'vertical', | |
| children, | |
| ...restProps | |
| } | |
| </script> | |
| <ScrollAreaPrimitive.Scrollbar | |
| bind:ref | |
| data-slot="scroll-area-scrollbar" | |
| data-orientation={orientation} | |
| {orientation} | |
| class={cn( | |
| 'flex touch-none p-px transition-colors select-none data-horizontal:h-2.5 data-horizontal:flex-col data-horizontal:border-t data-horizontal:border-t-transparent data-vertical:h-full data-vertical:w-2.5 data-vertical:border-l data-vertical:border-l-transparent', | |
| className | |
| )} | |
| {...restProps} | |
| > | |
| {@render children?.()} | |
| <ScrollAreaPrimitive.Thumb | |
| data-slot="scroll-area-thumb" | |
| class="bg-border relative flex-1 rounded-full" | |
| /> | |
| </ScrollAreaPrimitive.Scrollbar> | |