reflex/reflex/components/disclosure/visuallyhidden.py
Masen Furer 18bddfb7e7
WiP
2023-12-14 14:53:20 -08:00

10 lines
288 B
Python

"""A component to display visually hidden text."""
from reflex.components.libs.chakra import ChakraComponent
class VisuallyHidden(ChakraComponent):
"""A component that visually hides content while still allowing it to be read by screen readers."""
tag: str = "VisuallyHidden"