27 lines
664 B
TypeScript
27 lines
664 B
TypeScript
"use client";
|
|
|
|
import { RESOLUTIONS } from "@/lib/constants";
|
|
|
|
type Props = {
|
|
value: string;
|
|
onChange: (value: string) => void;
|
|
disabled?: boolean;
|
|
};
|
|
|
|
export function ResolutionSelect({ value, onChange, disabled }: Props) {
|
|
return (
|
|
<select
|
|
value={value}
|
|
onChange={(e) => onChange(e.target.value)}
|
|
disabled={disabled}
|
|
className="w-full rounded border border-gray-600 bg-surface-light px-3 py-2 text-sm text-white focus:border-accent focus:outline-none disabled:opacity-50"
|
|
>
|
|
{RESOLUTIONS.map((r) => (
|
|
<option key={r.value} value={r.value}>
|
|
{r.label}
|
|
</option>
|
|
))}
|
|
</select>
|
|
);
|
|
}
|