mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2025-09-05 01:42:54 +00:00
20 lines
567 B
Svelte
20 lines
567 B
Svelte
<script lang="ts">
|
|
import ChevronDown from "@lucide/svelte/icons/chevron-down";
|
|
import { Select as SelectPrimitive, type WithoutChildrenOrChild } from "bits-ui";
|
|
import { cn } from "$lib/utils.js";
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
class: className,
|
|
...restProps
|
|
}: WithoutChildrenOrChild<SelectPrimitive.ScrollDownButtonProps> = $props();
|
|
</script>
|
|
|
|
<SelectPrimitive.ScrollDownButton
|
|
bind:ref
|
|
class={cn("flex cursor-default items-center justify-center py-1", className)}
|
|
{...restProps}
|
|
>
|
|
<ChevronDown class="size-4" />
|
|
</SelectPrimitive.ScrollDownButton>
|