{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "nav-footer", "dependencies": [ "@inertiajs/react" ], "registryDependencies": [ "sidebar", "@launch/use-current-url" ], "files": [ { "path": "registry/new-york-v4/components/nav-footer.tsx", "content": "import type { ComponentPropsWithoutRef } from \"react\";\nimport {\n SidebarGroup,\n SidebarGroupContent,\n SidebarMenu,\n SidebarMenuButton,\n SidebarMenuItem,\n} from \"@/components/ui/sidebar\";\nimport { toUrl } from \"@/lib/utils\";\nimport type { NavItem } from \"@/lib/types\";\n\nexport function NavFooter({\n items,\n className,\n ...props\n}: ComponentPropsWithoutRef & {\n items: NavItem[];\n}) {\n return (\n \n \n \n {items.map((item) => (\n \n \n }\n className=\"text-neutral-600 hover:text-neutral-800 dark:text-neutral-300 dark:hover:text-neutral-100\"\n >\n {item.icon && }\n {item.title}\n \n \n ))}\n \n \n \n );\n}\n", "type": "registry:component" } ], "type": "registry:component" }