import { forwardRef } from 'react' import { Box, BoxProps } from '../Box' export interface VisuallyHiddenProps extends BoxProps {} export let VisuallyHidden = forwardRef( function VisuallyHidden(props: VisuallyHiddenProps, ref) { return }, ) export default VisuallyHidden