interface InputProps { value: string | number onChange: (value: string) => void placeholder?: string type?: string min?: number max?: number } export default function Input({ value, onChange, placeholder, type = 'text', min, max }: InputProps) { return ( onChange(e.target.value)} className="w-full h-7 px-2 rounded-md text-ui-sm text-text-primary bg-editor-surface border transition-all duration-150 outline-none placeholder:text-text-muted focus:border-accent" style={{ borderColor: 'var(--color-panel-border)' }} /> ) }