password.py 253 B

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