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