10 lines
288 B
Python
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"
|