17 lines
527 B
React
Executable File
17 lines
527 B
React
Executable File
// src/components/Inputs/InputBox.jsx
|
|
// InputBox komponens
|
|
|
|
export default function InputBox({ type, placeholder, value, onChange }) {
|
|
return (
|
|
<div className="mb-6 relative">
|
|
<input
|
|
type={type}
|
|
className="w-full px-4 py-3 border border-gray-300 rounded-lg focus:border-background focus:outline-none text-gray-700 placeholder-gray-400 bg-gray-50"
|
|
placeholder={placeholder}
|
|
value={value}
|
|
onChange={onChange}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|