password.py 249 B

1234567891011
  1. """A password input component."""
  2. from reflex.components.forms.input import Input
  3. from reflex.vars import Var
  4. class Password(Input):
  5. """A password input component."""
  6. # The type of input.
  7. type_: Var[str] = "password" # type: ignore