mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-16 02:02:58 +03:00
28 lines
968 B
Svelte
28 lines
968 B
Svelte
<script lang="ts">
|
|
import { Select as SelectPrimitive } from "bits-ui";
|
|
import ChevronDown from "lucide-svelte/icons/chevron-down";
|
|
import { cn } from "$lib/utils/style.js";
|
|
|
|
type $$Props = SelectPrimitive.TriggerProps;
|
|
type $$Events = SelectPrimitive.TriggerEvents;
|
|
|
|
let className: $$Props["class"] = undefined;
|
|
export { className as class };
|
|
</script>
|
|
|
|
<SelectPrimitive.Trigger
|
|
class={cn(
|
|
"border-input bg-background ring-offset-background focus-visible:ring-ring aria-[invalid]:border-destructive data-[placeholder]:[&>span]:text-muted-foreground flex h-10 w-full items-center justify-between rounded-md border px-3 py-2 text-sm focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50 [&>span]:line-clamp-1",
|
|
className
|
|
)}
|
|
{...$$restProps}
|
|
let:builder
|
|
on:click
|
|
on:keydown
|
|
>
|
|
<slot {builder} />
|
|
<div>
|
|
<ChevronDown class="h-4 w-4 opacity-50" />
|
|
</div>
|
|
</SelectPrimitive.Trigger>
|