You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.2 KiB

import { type SelectHTMLAttributes } from "react";
interface SelectOption {
value: string;
label: string;
}
interface SelectFieldProps extends SelectHTMLAttributes<HTMLSelectElement> {
label: string;
options: SelectOption[];
error?: string;
}
export function SelectField({
label,
options,
error,
id,
name,
className = "",
...rest
}: SelectFieldProps) {
const fieldId = id ?? name;
return (
<div className="space-y-1">
<label htmlFor={fieldId} className="block text-sm font-medium text-text-primary">
{label}
</label>
<select
id={fieldId}
name={name}
{...rest}
className={`h-10 w-full rounded-sm border px-3 text-sm transition-colors focus:border-primary focus:outline-none focus:ring-2 focus:ring-primary/20 disabled:cursor-not-allowed disabled:bg-bg disabled:opacity-60 ${
error ? "border-error" : "border-border"
} ${className}`}
>
{options.map((opt) => (
<option key={opt.value} value={opt.value}>
{opt.label}
</option>
))}
</select>
{error && <p className="text-xs text-error">{error}</p>}
</div>
);
}