{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "extends": "none",
  "name": "container",
  "title": "container",
  "description": "container",
  "dependencies": [
    "tailwind-merge"
  ],
  "files": [
    {
      "path": "src/components/ui/container.tsx",
      "content": "import { twMerge } from 'tailwind-merge'\n\nexport interface ContainerProps extends React.ComponentProps<'div'> {\n  constrained?: boolean\n}\n\nexport function Container({ className, constrained = false, ref, ...props }: ContainerProps) {\n  return (\n    <div\n      className={twMerge(\n        'mx-auto w-full max-w-(--container-breakpoint) [--container-breakpoint:var(--breakpoint-xl)] [--container-padding:--spacing(4)]',\n        constrained ? 'sm:px-(--container-padding)' : 'px-(--container-padding)',\n        className\n      )}\n      {...props}\n      ref={ref}\n    />\n  )\n}\n",
      "type": "registry:ui"
    }
  ],
  "type": "registry:ui"
}