{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "spring-pop",
  "title": "Spring Pop",
  "description": "Spring pop entrance — a natural ~1.05 overshoot that emerges from the spring itself, plus fade.",
  "dependencies": [
    "motion"
  ],
  "registryDependencies": [
    "https://motion.asmitsah.dev/r/provider.json"
  ],
  "files": [
    {
      "path": "components/motion/spring-pop.tsx",
      "content": "\"use client\";\n\nimport * as m from \"motion/react-m\";\nimport type { CSSProperties, ReactNode } from \"react\";\nimport { springPop, springPopTransition } from \"@/lib/motion\";\n\ntype SpringPopProps = {\n  children: ReactNode;\n  className?: string;\n  style?: CSSProperties;\n  delay?: number;\n};\n\n// The ~1.05 overshoot emerges from the spring itself — never keyframe it.\n// Reduced motion drops the scale (a transform), leaving a clean opacity fade.\nexport function SpringPop({ children, className, style, delay = 0 }: SpringPopProps) {\n  return (\n    <m.div\n      className={className}\n      style={style}\n      initial={springPop.initial}\n      animate={springPop.animate}\n      transition={{ ...springPopTransition, delay }}\n    >\n      {children}\n    </m.div>\n  );\n}\n",
      "type": "registry:component",
      "target": "@components/motion/spring-pop.tsx"
    }
  ],
  "type": "registry:component"
}