{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "kpi-grid",
  "title": "Kpi Grid",
  "type": "registry:ui",
  "files": [
    {
      "path": "packages/registry-react/components/kpi-grid/kpi-grid.tsx",
      "content": "import * as React from 'react'\nimport { cn } from '@/lib/utils'\n\nexport interface KpiGridProps extends React.HTMLAttributes<HTMLDivElement> {\n  columns?: 2 | 3 | 4\n}\n\nconst KpiGrid = React.forwardRef<HTMLDivElement, KpiGridProps>(\n  ({ columns = 4, className, children, ...props }, ref) => (\n    <div\n      ref={ref}\n      className={cn(\n        'grid gap-4 md:grid-cols-2',\n        columns === 3 ? 'lg:grid-cols-3' : columns === 2 ? 'lg:grid-cols-2' : 'lg:grid-cols-4',\n        className,\n      )}\n      {...props}\n    >\n      {children}\n    </div>\n  ),\n)\nKpiGrid.displayName = 'KpiGrid'\n\nexport { KpiGrid }\n",
      "type": "registry:ui",
      "target": "~/components/ui/kpi-grid/kpi-grid.tsx"
    },
    {
      "path": "packages/registry-react/components/kpi-grid/index.ts",
      "content": "export { KpiGrid, type KpiGridProps } from './kpi-grid'\n",
      "type": "registry:ui",
      "target": "~/components/ui/kpi-grid/index.ts"
    }
  ],
  "dependencies": [],
  "devDependencies": [],
  "registryDependencies": [],
  "description": "Bare responsive grid wrapper (2 / 3 / 4 columns). Pass any children — Cards, inline charts, custom tiles. No items prop, no item rendering.",
  "categories": [
    "layout"
  ]
}