import { VisuallyHidden } from '@wordpress/components';
const VisuallyHiddenExample = () => (
<>
This should not show.
This text will but not inline always show.
Additional class names passed to VisuallyHidden extend the component class name.{ ' ' }
{ /* eslint-disable-next-line wpcalypso/jsx-classname-namespace */ }
Check out my class!{ ' ' }
Inspect the HTML to see!
>
);
export default VisuallyHiddenExample;