Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import ScreenReaderText from '..';
export default function ScreenReaderTextExample() {
const srText = "I'm visible for screen readers";
return (
<div>
<p>
This text is followed by the JSX "&lt;ScreenReaderText&gt;
{ srText }
&lt;/ScreenReaderText&gt;". It is invisible on screen, but read out to screen readers.
Inspect to see the example.
</p>
<ScreenReaderText>{ srText }</ScreenReaderText>
</div>
);
}
ScreenReaderTextExample.displayName = 'ScreenReaderTextExample';