{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "icon-volume-2",
  "title": "Volume 2",
  "description": "Animated Lucide volume-2 icon — the speaker draws on, then the two sound waves ripple outward one after the other.",
  "dependencies": ["remotion"],
  "registryDependencies": ["@remocn/icons-core"],
  "files": [
    {
      "path": "registry/remocn-icons/icon-volume-2/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 SPEAKER_PATH =\n  \"M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z\";\nconst INNER_PATH = \"M16 9a5 5 0 0 1 0 6\";\nconst OUTER_PATH = \"M19.364 18.364a9 9 0 0 0 0-12.728\";\n\nconst TIMINGS = {\n  drawDurationInFrames: 20,\n  actionDelayInFrames: 2,\n  actionDurationInFrames: 18,\n  loop: false,\n} as const;\n\nexport function Volume2Icon({\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, actionFrame } =\n    useIconAnimation({ animation, loop, speed }, TIMINGS);\n\n  const linearDraw = 1 - (1 - drawProgress) ** (1 / 3);\n\n  const bodyDraw = interpolate(linearDraw, [0, 0.6], [0, 1], {\n    extrapolateLeft: \"clamp\",\n    extrapolateRight: \"clamp\",\n    easing: Easing.out(Easing.quad),\n  });\n  const innerDraw = interpolate(linearDraw, [0.4, 0.8], [0, 1], {\n    extrapolateLeft: \"clamp\",\n    extrapolateRight: \"clamp\",\n    easing: Easing.out(Easing.quad),\n  });\n  const outerDraw = interpolate(linearDraw, [0.6, 1], [0, 1], {\n    extrapolateLeft: \"clamp\",\n    extrapolateRight: \"clamp\",\n    easing: Easing.out(Easing.quad),\n  });\n\n  const acting = animation !== \"draw\" && actionFrame >= 0;\n\n  const innerProgress = acting ? 1 : innerDraw;\n  const outerProgress = acting ? 1 : outerDraw;\n\n  const innerShift = acting\n    ? interpolate(actionProgress, [0, 0.35, 0.7], [0, 2, 0], {\n        extrapolateLeft: \"clamp\",\n        extrapolateRight: \"clamp\",\n      })\n    : 0;\n  const innerGrow = acting\n    ? interpolate(actionProgress, [0, 0.35, 0.7], [1, 1.08, 1], {\n        extrapolateLeft: \"clamp\",\n        extrapolateRight: \"clamp\",\n      })\n    : 1;\n  const outerShift = acting\n    ? interpolate(actionProgress, [0.12, 0.47, 0.82], [0, 2, 0], {\n        extrapolateLeft: \"clamp\",\n        extrapolateRight: \"clamp\",\n      })\n    : 0;\n  const outerGrow = acting\n    ? interpolate(actionProgress, [0.12, 0.47, 0.82], [1, 1.08, 1], {\n        extrapolateLeft: \"clamp\",\n        extrapolateRight: \"clamp\",\n      })\n    : 1;\n\n  const body = drawnPathProps(SPEAKER_PATH, bodyDraw);\n  const inner = drawnPathProps(INNER_PATH, innerProgress);\n  const outer = drawnPathProps(OUTER_PATH, outerProgress);\n\n  const innerTransform = `translate(${11 * (1 - innerGrow) + innerShift} ${12 * (1 - innerGrow)}) scale(${innerGrow})`;\n  const outerTransform = `translate(${11 * (1 - outerGrow) + outerShift} ${12 * (1 - outerGrow)}) scale(${outerGrow})`;\n\n  const scale = 0.85 + 0.15 * scaleIn;\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      <path\n        d={SPEAKER_PATH}\n        strokeDasharray={body.strokeDasharray}\n        strokeDashoffset={body.strokeDashoffset}\n      />\n      <g transform={innerTransform}>\n        <path\n          d={INNER_PATH}\n          strokeDasharray={inner.strokeDasharray}\n          strokeDashoffset={inner.strokeDashoffset}\n        />\n      </g>\n      <g transform={outerTransform}>\n        <path\n          d={OUTER_PATH}\n          strokeDasharray={outer.strokeDasharray}\n          strokeDashoffset={outer.strokeDashoffset}\n        />\n      </g>\n    </svg>\n  );\n}\n\nexport function Volume2IconStatic({\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={SPEAKER_PATH} />\n      <path d={INNER_PATH} />\n      <path d={OUTER_PATH} />\n    </svg>\n  );\n}\n",
      "type": "registry:component",
      "target": "components/remocn/icon-volume-2.tsx"
    }
  ],
  "type": "registry:component"
}
