{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "content-wrapper", "title": "Content Wrapper", "description": "Main content area with #ecf0f5 background, margin-left offset for sidebar, and transition animations.", "registryDependencies": [ "https://raw.githubusercontent.com/dnachavez/adminlte-next/master/public/r/adminlte-theme.json" ], "files": [ { "path": "registry/new-york/content-wrapper/components/content-wrapper.tsx", "content": "\"use client\"\n\nimport * as React from \"react\"\nimport { cn } from \"@/registry/new-york/adminlte-theme/lib/cn\"\n\ninterface ContentWrapperProps extends React.HTMLAttributes {\n collapsed?: boolean\n}\n\nconst ContentWrapper = React.forwardRef(\n ({ className, collapsed = false, children, style, ...props }, ref) => {\n return (\n \n {children}\n \n )\n }\n)\nContentWrapper.displayName = \"ContentWrapper\"\n\nexport { ContentWrapper }\nexport type { ContentWrapperProps }\n", "type": "registry:component" } ], "type": "registry:component" }