'use client'
import * as VisuallyHiddenPrimitive from '@radix-ui/react-visually-hidden'
import { type VisuallyHiddenProps } from './VisuallyHidden.types'
/**
* `VisuallyHidden` is a component that visually hides the content. It doesn't render any DOM node.
* It is useful when you want to provide additional information to screen readers.
* @example
*
* ```tsx
*
* This is a visually hidden text.
*
* ```
*/
export function VisuallyHidden({ children }: VisuallyHiddenProps) {
return (
{children}
)
}