{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "number-count",
  "description": "An animated number whose digits roll between values, built on NumberFlow.",
  "dependencies": [
    "@number-flow/react"
  ],
  "registryDependencies": [
    "@ondo-ui/utils"
  ],
  "files": [
    {
      "path": "components/ui/number-count.tsx",
      "content": "\"use client\"\n\nimport NumberFlow from \"@number-flow/react\"\n\nimport { cn } from \"@/lib/utils\"\n\ntype NumberCountProps = React.ComponentProps<typeof NumberFlow>\n\nfunction NumberCount({ className, ...props }: NumberCountProps) {\n  return (\n    <NumberFlow\n      className={cn(\"tabular-nums\", className)}\n      data-slot=\"number-count\"\n      {...props}\n    />\n  )\n}\n\nexport { NumberCount, type NumberCountProps }\n",
      "type": "registry:ui"
    }
  ],
  "type": "registry:ui"
}