reflex/reflex/components/forms/date_picker.py
2023-06-25 16:56:55 -07:00

12 lines
239 B
Python

"""A date input component."""
from reflex.components.forms.input import Input
from reflex.vars import Var
class DatePicker(Input):
"""A date input component."""
# The type of input.
type_: Var[str] = "date" # type: ignore