import React from 'react'; interface InputProps { type?: 'text' | 'email' | 'password' | 'number' | 'search'; placeholder?: string; value?: string; onChange?: (value: string) => void; onKeyPress?: (event: React.KeyboardEvent) => void; disabled?: boolean; required?: boolean; className?: string; id?: string; name?: string; } /** * Input Atom - Reusable input component * Example atom component - feel free to modify or delete */ export const Input: React.FC = ({ type = 'text', placeholder, value, onChange, onKeyPress, disabled = false, required = false, className = '', id, name }) => { const baseClasses = 'w-full px-3 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent transition-colors'; const disabledClasses = disabled ? 'bg-gray-100 cursor-not-allowed' : 'bg-white'; const classes = [baseClasses, disabledClasses, className].join(' '); return ( onChange?.(e.target.value)} onKeyPress={onKeyPress} disabled={disabled} required={required} className={classes} /> ); };