@primer/react
Version:
An implementation of GitHub's Primer Design System using React
8 lines • 359 B
TypeScript
import type { SxProp } from './sx';
interface Props extends React.ComponentPropsWithoutRef<'span'> {
isVisible?: boolean;
as?: React.ElementType;
}
declare function VisuallyHidden({ isVisible, children, as, className, ...rest }: Props & SxProp): import("react").JSX.Element;
export default VisuallyHidden;
//# sourceMappingURL=_VisuallyHidden.d.ts.map