Created a profile editing page

This commit is contained in:
Tiago Ribeiro
2023-07-04 13:21:36 +01:00
parent dceff807e9
commit 49e24865a3
8 changed files with 148 additions and 22 deletions

View File

@@ -5,11 +5,12 @@ interface Props {
required?: boolean;
label?: string;
placeholder?: string;
defaultValue?: string;
name: string;
onChange: (value: string) => void;
}
export default function Input({type, label, placeholder, name, required = false, onChange}: Props) {
export default function Input({type, label, placeholder, name, required = false, defaultValue, onChange}: Props) {
const [showPassword, setShowPassword] = useState(false);
if (type === "password") {
@@ -55,6 +56,7 @@ export default function Input({type, label, placeholder, name, required = false,
placeholder={placeholder}
className="px-8 py-6 text-sm font-normal placeholder:text-mti-gray-cool bg-white rounded-full border border-mti-gray-platinum focus:outline-none"
required={required}
defaultValue={defaultValue}
/>
</div>
);