"""Base classes."""
from typing import Union
from reflex.components.el.element import Element
from reflex.vars.base import Var
class BaseHTML(Element):
"""Base class for common attributes."""
# Provides a hint for generating a keyboard shortcut for the current element.
access_key: Var[Union[str, int, bool]]
# Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
auto_capitalize: Var[Union[str, int, bool]]
# Indicates whether the element's content is editable.
content_editable: Var[Union[str, int, bool]]
# Defines the ID of a