import React, { type ReactNode } from 'react' import { forwardRefWithAs } from '../utils' // Only display content to screen readers // ------------------------------ // See: https://a11yproject.com/posts/how-to-hide-content/ type Props = { children?: ReactNode } export const VisuallyHidden = forwardRefWithAs<'span', Props>( ({ as: Tag = 'span', ...props }, ref) => { return } ) export const visuallyHiddenStyles = { border: 0, clip: 'rect(0, 0, 0, 0)', height: 1, overflow: 'hidden', padding: 0, position: 'absolute', whiteSpace: 'nowrap', width: 1, } as const