UNPKG

@greensight/gds

Version:
10 lines (9 loc) 335 B
import React, { FC } from 'react'; export interface VisuallyHiddenProps { /** Hidden content. */ children: React.ReactNode; } /** * Component to wrap components to make them visually hidden. These components still will be available for assistive technologies. */ export declare const VisuallyHidden: FC<VisuallyHiddenProps>;