1.0.0-rc.9 • Published 3 years ago

@hackr/chakra-ui-visually-hidden v1.0.0-rc.9

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

@hackr/chakra-ui-visually-hidden

The visually hidden component styles itself so that it’s content is not visible, but it is available to assistive technologies like screen readers and other text to speech programs.

Installation

yarn add @hackr/chakra-ui-visually-hidden

# or

npm i @hackr/chakra-ui-visually-hidden

Import component

import { VisuallyHidden } from "@hackr/chakra-ui-visually-hidden"

Basic usage

// it renders a `span` by default
<VisuallyHidden>This content will be hidden on screen</VisuallyHidden>

// for visually hidden input fields
<VisuallyHiddenInput type="checkbox" defaultChecked/>

References