import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import React from 'react'; export const Input = React.forwardRef(({ label, error, helperText, className = '', ...props }, ref) => { return (_jsxs("div", { className: "space-y-1", children: [label && (_jsx("label", { className: "block text-sm font-medium text-gray-700 mb-1", children: label })), _jsx("input", { ref: ref, className: `w-full px-3 py-2 border rounded-lg shadow-sm focus:outline-none focus:ring-2 focus:ring-maya-primary focus:border-transparent transition-all ${error ? 'border-red-300 bg-red-50' : 'border-gray-300 hover:border-gray-400'} ${className}`, ...props }), error && (_jsx("p", { className: "text-sm text-maya-danger", children: error })), helperText && !error && (_jsx("p", { className: "text-sm text-gray-500", children: helperText }))] })); }); export default Input;