UNPKG

jobiqo-cl

Version:

[![CircleCI](https://circleci.com/gh/jobiqo/jobiqo-cl.svg?style=svg&circle-token=5a24efa5b8bbc4879276123e77d0d3f35ca7144c)](https://circleci.com/gh/jobiqo/jobiqo-cl)

19 lines (18 loc) 508 B
/** * @file index.tsx * * @fileoverview Skip to main content navigation. */ import * as React from 'react'; export interface HiddenVisuallyProps { /** * The contents for what is visually hidden. */ children: React.ReactNode; } /** * Provides text for screen readers that is visually hidden. * It is the logical opposite of the aria-hidden attribute. */ export declare const HiddenVisually: ({ children, ...props }: HiddenVisuallyProps) => JSX.Element; export default HiddenVisually;