Skip to content

Instantly share code, notes, and snippets.

@ejmudrak
Created December 5, 2023 16:22
Show Gist options
  • Select an option

  • Save ejmudrak/3cab16fcb24f97b8fc4340ccbbc24dad to your computer and use it in GitHub Desktop.

Select an option

Save ejmudrak/3cab16fcb24f97b8fc4340ccbbc24dad to your computer and use it in GitHub Desktop.
Inaccessible Password
<TextField
type={showPassword ? 'text' : 'password'}
InputProps={{
endAdornment: (
<IconButton
onClick={() => setShowPassword((prev) => !prev)}
>
{showPassword ? <VisibilityOff /> : <Visibility />}
</IconButton>
),
}}
/>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment