Generateurv2/frontend/components/input2.jsx

29 lines
804 B
React
Raw Normal View History

2022-06-24 13:42:16 +02:00
import styles from '../styles/input2.module.scss'
import { AiFillEye, AiFillEyeInvisible } from "react-icons/ai";
import { useState } from 'react';
export default function Input2(props) {
const [type, setType] = useState(props.type||'text')
return (
<span className={styles.container}>
<input className={styles.input} {...props} type={type} />
{props.type == "password" &&
(type != "password" ? (
<AiFillEye
onClick={() => {
setType("password");
}}
className={styles["password-toggler"]}
/>
) : (
<AiFillEyeInvisible
onClick={() => {
setType("text");
}}
className={styles["password-toggler"]}
/>
))}
</span>
);
}