{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "nextjs-theme-provider",
  "type": "registry:component",
  "title": "Theme Provider",
  "description": "A theme provider component using next-themes for dark mode support.",
  "dependencies": [
    "next-themes"
  ],
  "files": [
    {
      "path": "nextjs/common/theme-provider/theme-provider.tsx",
      "content": "'use client';\n\nimport { ThemeProvider as NextThemesProvider } from 'next-themes';\nimport * as React from 'react';\n\nexport function ThemeProvider({ children, ...props }: React.ComponentProps<typeof NextThemesProvider>) {\n  return <NextThemesProvider {...props}>{children}</NextThemesProvider>;\n}\n",
      "type": "registry:component"
    }
  ]
}