import { IconButton, InputAdornment, TextField, TextFieldProps, } from "@mui/material"; import { useState } from "react"; import { Visibility, VisibilityOff } from "@mui/icons-material"; export default function Secret(props: TextFieldProps) { const { name = "secret", label = "Secret" } = props; const [showSecret, setShowSecret] = useState(false); const handleShowSecret = () => setShowSecret(!showSecret); return ( {showSecret ? : } ), }} /> ); }