ÇiçekSepeti Visually Hidden Component
npm install @ciceksepeti/cui-visually-hidden !storybook !PRs Welcome 
Visually Hidden is used when an element needs to be available to assistive technology, but otherwise hidden. The visually hidden component hides text visually from screen, but keeps it available to assistive technologies, such as screen readers. The component shouldn't be used to hide interactive content.
bash
$ npm install @ciceksepeti/cui-visually-hidden
`
Using Yarn:
`bash
$ yarn add @ciceksepeti/cui-visually-hidden
`Example
`jsx
import VisuallyHidden from "@ciceksepeti/cui-visually-hidden";function Demo() {
return Should not be seen! ;
}
``