{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "brand-zoom-icon",
  "dependencies": ["motion"],
  "devDependencies": [],
  "registryDependencies": [],
  "files": [
    {
      "path": "icons/brand-zoom-icon.tsx",
      "content": "import { forwardRef, useImperativeHandle } from \"react\";\nimport type { AnimatedIconHandle, AnimatedIconProps } from \"./types\";\nimport { motion, useAnimate } from \"motion/react\";\n\nconst BrandZoomIcon = forwardRef<AnimatedIconHandle, AnimatedIconProps>(\n  (\n    { size = 24, color = \"currentColor\", strokeWidth = 2, className = \"\" },\n    ref,\n  ) => {\n    const [scope, animate] = useAnimate();\n\n    const start = async () => {\n      await animate(\n        scope.current,\n        {\n          scale: [1, 0.7],\n          opacity: [1, 0.6],\n        },\n        {\n          duration: 0.2,\n          ease: \"easeIn\",\n        },\n      );\n      await animate(\n        scope.current,\n        {\n          scale: [0.7, 1.3, 1.15],\n          opacity: [0.6, 1],\n          rotateY: [0, 360],\n          rotateX: [0, 15, 0],\n        },\n        {\n          duration: 0.6,\n          ease: [0.34, 1.56, 0.64, 1],\n        },\n      );\n\n      animate(\n        \"motion\\\\:nth-of-type(1)\",\n        {\n          x: [0, 3, 0],\n          opacity: [1, 0.7, 1],\n        },\n        {\n          duration: 0.3,\n          repeat: 2,\n          ease: \"easeInOut\",\n        },\n      );\n\n      await animate(\n        \"motion\\\\:nth-of-type(2)\",\n        {\n          scale: [1, 1.08, 1.05, 1],\n          fill: [\"none\", \"rgba(59, 130, 246, 0.1)\", \"none\"],\n        },\n        {\n          duration: 0.5,\n          ease: \"easeOut\",\n        },\n      );\n\n      animate(\n        scope.current,\n        {\n          y: [0, -2, 0],\n          scale: [1.15, 1.05, 1],\n        },\n        {\n          duration: 0.4,\n          ease: \"easeOut\",\n        },\n      );\n    };\n\n    const stop = () => {\n      animate(\n        scope.current,\n        {\n          scale: 1,\n          rotateY: 0,\n          rotateX: 0,\n          y: 0,\n          opacity: 1,\n        },\n        {\n          duration: 0.3,\n          ease: \"easeOut\",\n        },\n      );\n    };\n\n    useImperativeHandle(ref, () => {\n      return {\n        startAnimation: start,\n        stopAnimation: stop,\n      };\n    });\n\n    const handleHoverStart = () => {\n      start();\n    };\n\n    const handleHoverEnd = () => {\n      stop();\n    };\n\n    return (\n      <motion.svg\n        ref={scope}\n        onHoverStart={handleHoverStart}\n        onHoverEnd={handleHoverEnd}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        width={size}\n        height={size}\n        viewBox=\"0 0 24 24\"\n        fill=\"none\"\n        stroke={color}\n        strokeWidth={strokeWidth}\n        strokeLinecap=\"round\"\n        strokeLinejoin=\"round\"\n        className={`cursor-pointer ${className}`}\n        style={{\n          perspective: \"1000px\",\n          transformStyle: \"preserve-3d\",\n        }}\n      >\n        <path stroke=\"none\" d=\"M0 0h24v24H0z\" fill=\"none\" />\n        <motion.path\n          d=\"M17.011 9.385v5.128l3.989 3.487v-12l-3.989 3.385\"\n          initial={{ x: 0, opacity: 1 }}\n        />\n        <motion.path\n          d=\"M3.887 6h10.08c1.468 0 3.033 1.203 3.033 2.803v8.196a.991 .991 0 0 1 -.975 1h-10.373c-1.667 0 -2.652 -1.5 -2.652 -3l.01 -8a.882 .882 0 0 1 .208 -.71a.841 .841 0 0 1 .67 -.287l-.001 -.002\"\n          initial={{ scale: 1, fill: \"none\" }}\n        />\n      </motion.svg>\n    );\n  },\n);\n\nBrandZoomIcon.displayName = \"BrandZoomIcon\";\n\nexport default BrandZoomIcon;\n",
      "type": "registry:ui"
    },
    {
      "path": "icons/types.ts",
      "content": "import type { SVGProps } from \"react\";\n\n/** Standard stroke width for 24×24 outline icons */\nexport const DEFAULT_STROKE_WIDTH = 2;\n\n/** Scale stroke to match DEFAULT_STROKE_WIDTH on non-24 viewBoxes */\nexport function scaledStrokeWidth(\n  strokeWidth: number,\n  viewBoxSize: number,\n): number {\n  return strokeWidth * (viewBoxSize / 24);\n}\n\nexport type IconEasing =\n  | \"linear\"\n  | \"easeIn\"\n  | \"easeOut\"\n  | \"easeInOut\"\n  | \"circIn\"\n  | \"circOut\"\n  | \"circInOut\"\n  | \"backIn\"\n  | \"backOut\"\n  | \"backInOut\"\n  | \"anticipate\";\n\nexport interface AnimatedIconProps extends Omit<\n  SVGProps<SVGSVGElement>,\n  | \"ref\"\n  | \"onAnimationStart\"\n  | \"onAnimationEnd\"\n  | \"onAnimationIteration\"\n  | \"onDrag\"\n  | \"onDragEnd\"\n  | \"onDragEnter\"\n  | \"onDragExit\"\n  | \"onDragLeave\"\n  | \"onDragOver\"\n  | \"onDragStart\"\n  | \"onDrop\"\n  | \"values\"\n> {\n  /** Icon size in pixels or CSS string */\n  size?: number | string;\n  /** Icon color (defaults to currentColor) */\n  color?: string;\n  /** SVG stroke width */\n  strokeWidth?: number;\n  /** Additional CSS classes */\n  className?: string;\n}\n\nexport interface AnimatedIconHandle {\n  startAnimation: () => void;\n  stopAnimation: () => void;\n}\n",
      "type": "registry:ui"
    }
  ],
  "type": "registry:ui"
}
