UNPKG

@combine-labs/combine-polaris

Version:

Combine Lab's product component library. Forked from Shopify's Polaris.

7 lines (6 loc) 210 B
import * as React from 'react'; export interface Props { /** The content to be hidden visually */ children?: React.ReactNode; } export default function VisuallyHidden({ children }: Props): JSX.Element;