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