@gechiui/components
Version:
UI components for GeChiUI.
22 lines (16 loc) • 550 B
Markdown
<div class="callout callout-alert">
This feature is still experimental. “Experimental” means this is an early implementation subject to drastic and breaking changes.
</div>
`VisuallyHidden` is a component used to render text intended to be visually hidden, but will show for alternate devices, for example a screen reader.
```jsx
import { View, VisuallyHidden } from '@gechiui/components/ui';
function Example() {
return (
<VisuallyHidden>
<View as="label">Code is Poetry</View>
</VisuallyHidden>
);
}
```