email.py 243 B

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