{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "theme-image", "registryDependencies": [ "https://reusables.vercel.app/r/utils.json" ], "files": [ { "path": "registry/reusables/ui/theme-image.tsx", "content": "\"use client\"\n\nimport type { ImageProps } from \"next/image\"\nimport Image from \"next/image\"\n\nimport { cn } from \"@/lib/utils\"\n\ninterface ThemeImageProps extends Omit {\n lightSrc: ImageProps[\"src\"]\n darkSrc: ImageProps[\"src\"]\n className?: string\n}\n\nexport const ThemeImage = ({\n lightSrc,\n darkSrc,\n alt,\n className,\n ...props\n}: ThemeImageProps) => {\n return (\n <>\n \n \n \n )\n}\n", "type": "registry:ui", "target": "components/ui/theme-image.tsx" } ], "type": "registry:ui" }