🏠VisuallyHiddenVersion: NextVisuallyHiddenOverviewCodeWhat is this?VisuallyHidden is a common technique used in web accessibility to hide content from the visual client, but keep it readable for screen readers.SearchA good usage example is the Search component, which we implement something similar like that internally.Submit searchShow CodeUsageimport { VisuallyHidden } from '@vtex/admin-ui'export function Example() { return ( <div> <VisuallyHidden> <label htmlFor="search">Hidden Label</label> </VisuallyHidden> <input id="search" type="search" placeholder="A11y Search Input" /> </div> )}CopyCopy codeShow CodePropsExtends all the props of span JSX element.NameTypeDescriptionRequiredDefaultcsxStylePropDefines component styles🚫{}What is this?Search