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

12 lines
249 B
Python

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