{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "visually-hidden",
  "registryDependencies": ["utils"],
  "files": [
    {
      "path": "registry/ui/visually-hidden.tsx",
      "content": "import * as React from 'react';\n\nimport { cn } from '@/registry/lib/utils';\n\nfunction VisuallyHidden({ className, ...props }: React.ComponentProps<'span'>) {\n  return (\n    <span\n      data-slot=\"visually-hidden\"\n      className={cn(\n        'absolute h-px w-px overflow-hidden whitespace-nowrap border-0 p-0 [clip:rect(0,0,0,0)]',\n        className\n      )}\n      {...props}\n    />\n  );\n}\n\nexport { VisuallyHidden };\n",
      "type": "registry:ui"
    }
  ],
  "type": "registry:ui"
}
