date_picker.py 239 B

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