{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "animated-number",
  "title": "Animated Number",
  "description": "A NumberFlow-powered animated number primitive for counters, timers, and metrics.",
  "dependencies": [
    "@number-flow/react"
  ],
  "registryDependencies": [],
  "files": [
    {
      "path": "registry/corr/components/animated-number.tsx",
      "content": "\"use client\"\n\nimport NumberFlow, { type NumberFlowProps } from \"@number-flow/react\"\n\nimport { cn } from \"@/lib/utils\"\n\nexport type AnimatedNumberProps = Omit<NumberFlowProps, \"value\"> & {\n  value: number\n}\n\nexport function AnimatedNumber({\n  value,\n  className,\n  willChange = true,\n  ...props\n}: AnimatedNumberProps) {\n  return (\n    <NumberFlow\n      value={value}\n      willChange={willChange}\n      className={cn(\"tabular-nums\", className)}\n      {...props}\n    />\n  )\n}\n",
      "type": "registry:component"
    }
  ],
  "type": "registry:component"
}