time_picker.py 246 B

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