{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "icon-sparkles",
  "title": "Sparkles",
  "description": "Animated Lucide sparkles icon — the main sparkle draws on, the accents pop, then a looping twinkle for AI, magic, or premium highlights. Loops by default.",
  "dependencies": ["remotion"],
  "registryDependencies": ["@remocn/icons-core"],
  "files": [
    {
      "path": "registry/remocn-icons/icon-sparkles/index.tsx",
      "content": "\"use client\";\n\nimport { Easing, interpolate } from \"remotion\";\nimport {\n  drawnPathProps,\n  type IconAnimationProps,\n  useIconAnimation,\n} from \"@/lib/remocn-icons\";\n\nconst MAIN_PATH =\n  \"M11.017 2.814a1 1 0 0 1 1.966 0l1.051 5.558a2 2 0 0 0 1.594 1.594l5.558 1.051a1 1 0 0 1 0 1.966l-5.558 1.051a2 2 0 0 0-1.594 1.594l-1.051 5.558a1 1 0 0 1-1.966 0l-1.051-5.558a2 2 0 0 0-1.594-1.594l-5.558-1.051a1 1 0 0 1 0-1.966l5.558-1.051a2 2 0 0 0 1.594-1.594z\";\nconst ACCENT_TR_V = \"M20 2v4\";\nconst ACCENT_TR_H = \"M22 4h-4\";\n\nconst TIMINGS = {\n  drawDurationInFrames: 14,\n  actionDelayInFrames: 2,\n  actionDurationInFrames: 45,\n  loop: true,\n} as const;\n\nexport function SparklesIcon({\n  animation = \"both\",\n  loop,\n  speed,\n  size = 48,\n  color = \"currentColor\",\n  strokeWidth = 2,\n  className,\n}: IconAnimationProps) {\n  const { drawProgress, scaleIn, actionProgress } = useIconAnimation(\n    { animation, loop, speed },\n    TIMINGS,\n  );\n\n  const linearDraw = 1 - (1 - drawProgress) ** (1 / 3);\n\n  const mainProgress = interpolate(linearDraw, [0, 0.857], [0, 1], {\n    extrapolateLeft: \"clamp\",\n    extrapolateRight: \"clamp\",\n    easing: Easing.inOut(Easing.quad),\n  });\n  const popTR = interpolate(linearDraw, [0.55, 0.714], [0, 1], {\n    extrapolateLeft: \"clamp\",\n    extrapolateRight: \"clamp\",\n    easing: Easing.out(Easing.back(1.8)),\n  });\n  const popBL = interpolate(linearDraw, [0.857, 1], [0, 1], {\n    extrapolateLeft: \"clamp\",\n    extrapolateRight: \"clamp\",\n    easing: Easing.out(Easing.back(1.8)),\n  });\n\n  const main = drawnPathProps(MAIN_PATH, mainProgress);\n\n  const mainPulse = interpolate(actionProgress, [0, 0.5, 1], [1, 1.08, 1], {\n    extrapolateLeft: \"clamp\",\n    extrapolateRight: \"clamp\",\n    easing: Easing.inOut(Easing.quad),\n  });\n  const smallPulse = interpolate(actionProgress, [0, 0.5, 1], [1, 0.7, 1], {\n    extrapolateLeft: \"clamp\",\n    extrapolateRight: \"clamp\",\n    easing: Easing.inOut(Easing.quad),\n  });\n  const smallOpacity = interpolate(actionProgress, [0, 0.5, 1], [1, 0.5, 1], {\n    extrapolateLeft: \"clamp\",\n    extrapolateRight: \"clamp\",\n    easing: Easing.inOut(Easing.quad),\n  });\n\n  const scale = 0.85 + 0.15 * scaleIn;\n  const trScale = popTR * smallPulse;\n  const blScale = popBL * smallPulse;\n\n  return (\n    <svg\n      className={className}\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      style={{\n        overflow: \"visible\",\n        transformOrigin: \"center\",\n        transform: `scale(${scale})`,\n      }}\n    >\n      <g transform={`translate(12 12) scale(${mainPulse}) translate(-12 -12)`}>\n        <path\n          d={MAIN_PATH}\n          strokeDasharray={main.strokeDasharray}\n          strokeDashoffset={main.strokeDashoffset}\n        />\n      </g>\n      <g\n        opacity={smallOpacity}\n        transform={`translate(20 4) scale(${trScale}) translate(-20 -4)`}\n      >\n        <path d={ACCENT_TR_V} />\n        <path d={ACCENT_TR_H} />\n      </g>\n      <g\n        opacity={smallOpacity}\n        transform={`translate(4 20) scale(${blScale}) translate(-4 -20)`}\n      >\n        <circle cx=\"4\" cy=\"20\" r=\"2\" />\n      </g>\n    </svg>\n  );\n}\n\nexport function SparklesIconStatic({\n  size = 48,\n  color = \"currentColor\",\n  strokeWidth = 2,\n  className,\n}: {\n  size?: number;\n  color?: string;\n  strokeWidth?: number;\n  className?: string;\n}) {\n  return (\n    <svg\n      className={className}\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    >\n      <path d={MAIN_PATH} />\n      <path d={ACCENT_TR_V} />\n      <path d={ACCENT_TR_H} />\n      <circle cx=\"4\" cy=\"20\" r=\"2\" />\n    </svg>\n  );\n}\n",
      "type": "registry:component",
      "target": "components/remocn/icon-sparkles.tsx"
    }
  ],
  "type": "registry:component"
}
