Files

30 lines
1.0 KiB
TypeScript
Raw Permalink Normal View History

import { InputHTMLAttributes, forwardRef } from 'react';
interface InputProps extends InputHTMLAttributes<HTMLInputElement> {
label?: string;
error?: string;
}
export const Input = forwardRef<HTMLInputElement, InputProps>(
({ label, error, className = '', id, ...props }, ref) => {
const inputId = id || label?.toLowerCase().replace(/\s+/g, '-');
return (
<div className="w-full">
{label && (
<label htmlFor={inputId} className="block text-sm font-medium text-text mb-1">
{label}
</label>
)}
<input
ref={ref}
id={inputId}
className={`w-full px-3 py-2 border rounded-lg bg-surface text-text placeholder-text-muted focus:outline-none focus:ring-2 focus:ring-primary focus:border-transparent transition-colors ${error ? 'border-error' : 'border-border'} ${className}`}
{...props}
/>
{error && <p className="mt-1 text-sm text-error">{error}</p>}
</div>
);
}
);
Input.displayName = 'Input';