email.py 239 B

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