| import { cn } from "@/lib/utils"; | |
| export function Select({ className, ...props }: React.SelectHTMLAttributes<HTMLSelectElement>) { | |
| return ( | |
| <select | |
| className={cn( | |
| "flex h-9 w-full border border-border bg-background/40 px-3 py-1 font-courier text-sm", | |
| "focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-foreground/30 focus-visible:border-foreground/25", | |
| "disabled:cursor-not-allowed disabled:opacity-50", | |
| className, | |
| )} | |
| {...props} | |
| /> | |
| ); | |
| } | |