{
  "$schema": "https://shadcn-vue.com/schema/registry-item.json",
  "name": "kpi-grid",
  "title": "Kpi Grid",
  "type": "registry:ui",
  "files": [
    {
      "path": "packages/registry-vue/components/kpi-grid/KpiGrid.vue",
      "content": "<script setup lang=\"ts\">\nwithDefaults(defineProps<{ columns?: 2 | 3 | 4 }>(), { columns: 4 })\n</script>\n\n<template>\n  <div\n    :class=\"[\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    ]\"\n  >\n    <slot />\n  </div>\n</template>\n",
      "type": "registry:ui",
      "target": "~/app/components/ui/kpi-grid/KpiGrid.vue"
    },
    {
      "path": "packages/registry-vue/components/kpi-grid/index.ts",
      "content": "export { default as KpiGrid } from './KpiGrid.vue'\n",
      "type": "registry:ui",
      "target": "~/app/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"
  ]
}