Spaces:
Running
Running
| <script lang="ts"> | |
| import { Select as SelectPrimitive } from 'bits-ui'; | |
| import { cn, type WithoutChildrenOrChild } from '$lib/utils.js'; | |
| import CaretDownIcon from 'phosphor-svelte/lib/CaretDown'; | |
| let { | |
| ref = $bindable(null), | |
| class: className, | |
| ...restProps | |
| } | |
| </script> | |
| <SelectPrimitive.ScrollDownButton | |
| bind:ref | |
| data-slot="select-scroll-down-button" | |
| class={cn( | |
| "bg-popover bottom-0 z-10 flex w-full cursor-default items-center justify-center py-1 [&_svg:not([class*='size-'])]:size-3.5", | |
| className | |
| )} | |
| {...restProps} | |
| > | |
| <CaretDownIcon /> | |
| </SelectPrimitive.ScrollDownButton> | |