| 32 | import { Visibility, VisibilityOff } from '@mui/icons-material' |
| 33 | |
| 34 | interface State { |
| 35 | amount: string |
| 36 | password: string |
| 37 | weight: string |
| 38 | weightRange: string |
| 39 | showPassword: boolean |
| 40 | } |
| 41 | |
| 42 | const PasswordDialog = (props) => { |
| 43 | const { title, children, open, openDialog, onConfirm, onCancel } = props |
nothing calls this directly
no outgoing calls
no test coverage detected