{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "icon-pause",
  "title": "Pause",
  "description": "Animated Lucide pause icon — the two bars draw on, then pinch toward each other and settle like a held breath.",
  "dependencies": ["remotion"],
  "registryDependencies": ["@remocn/icons-core"],
  "files": [
    {
      "path": "registry/remocn-icons/icon-pause/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 LEFT_PATH =\n  \"M6 21A1 1 0 0 1 5 20V4A1 1 0 0 1 6 3H9A1 1 0 0 1 10 4V20A1 1 0 0 1 9 21H6Z\";\nconst RIGHT_PATH =\n  \"M18 21A1 1 0 0 0 19 20V4A1 1 0 0 0 18 3H15A1 1 0 0 0 14 4V20A1 1 0 0 0 15 21H18Z\";\n\nconst TIMINGS = {\n  drawDurationInFrames: 14,\n  actionDelayInFrames: 2,\n  actionDurationInFrames: 20,\n  loop: false,\n} as const;\n\nexport function PauseIcon({\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 leftProgress = interpolate(linearDraw, [0, 0.88], [0, 1], {\n    extrapolateLeft: \"clamp\",\n    extrapolateRight: \"clamp\",\n    easing: Easing.out(Easing.quad),\n  });\n  const rightProgress = interpolate(linearDraw, [0.12, 1], [0, 1], {\n    extrapolateLeft: \"clamp\",\n    extrapolateRight: \"clamp\",\n    easing: Easing.out(Easing.quad),\n  });\n\n  const left = drawnPathProps(LEFT_PATH, leftProgress);\n  const right = drawnPathProps(RIGHT_PATH, rightProgress);\n\n  const pinch = interpolate(actionProgress, [0, 0.45, 1], [0, 1.5, 0], {\n    extrapolateLeft: \"clamp\",\n    extrapolateRight: \"clamp\",\n    easing: Easing.inOut(Easing.quad),\n  });\n  const squash = interpolate(actionProgress, [0, 0.45, 1], [1, 0.94, 1], {\n    extrapolateLeft: \"clamp\",\n    extrapolateRight: \"clamp\",\n    easing: Easing.inOut(Easing.quad),\n  });\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: `scaleX(${scale}) scaleY(${scale * squash})`,\n      }}\n    >\n      <g transform={`translate(${pinch} 0)`}>\n        <path\n          d={LEFT_PATH}\n          strokeDasharray={left.strokeDasharray}\n          strokeDashoffset={left.strokeDashoffset}\n        />\n      </g>\n      <g transform={`translate(${-pinch} 0)`}>\n        <path\n          d={RIGHT_PATH}\n          strokeDasharray={right.strokeDasharray}\n          strokeDashoffset={right.strokeDashoffset}\n        />\n      </g>\n    </svg>\n  );\n}\n\nexport function PauseIconStatic({\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      <rect x=\"14\" y=\"3\" width=\"5\" height=\"18\" rx=\"1\" />\n      <rect x=\"5\" y=\"3\" width=\"5\" height=\"18\" rx=\"1\" />\n    </svg>\n  );\n}\n",
      "type": "registry:component",
      "target": "components/remocn/icon-pause.tsx"
    }
  ],
  "type": "registry:component"
}
