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