@greensight/gds
Version:
Greensight Design System
10 lines (9 loc) • 335 B
TypeScript
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>;