26 lines
757 B
TypeScript
26 lines
757 B
TypeScript
import type { InputHTMLAttributes } from "react";
|
|
|
|
interface InputProps extends InputHTMLAttributes<HTMLInputElement> {
|
|
label?: string;
|
|
error?: string;
|
|
}
|
|
|
|
export function Input({ label, error, className = "", ...props }: InputProps) {
|
|
return (
|
|
<div className="w-full">
|
|
{label && (
|
|
<label className="block text-sm font-medium text-gray-700 mb-1">
|
|
{label}
|
|
</label>
|
|
)}
|
|
<input
|
|
className={`w-full px-3 py-2 border rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-transparent transition-colors ${
|
|
error ? "border-red-500" : "border-gray-300"
|
|
} ${className}`}
|
|
{...props}
|
|
/>
|
|
{error && <p className="mt-1 text-sm text-red-600">{error}</p>}
|
|
</div>
|
|
);
|
|
}
|