{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "icon-alert-triangle",
  "title": "Alert Triangle",
  "description": "Animated Lucide triangle-alert icon — the outline draws on, the mark pops in, then the exclamation blinks to flag a risk or warning.",
  "dependencies": ["remotion"],
  "registryDependencies": ["@remocn/icons-core"],
  "files": [
    {
      "path": "registry/remocn-icons/icon-alert-triangle/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 TRIANGLE_PATH =\n  \"m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3\";\nconst STEM_PATH = \"M12 9v4\";\nconst DOT_PATH = \"M12 17h.01\";\n\nconst TIMINGS = {\n  drawDurationInFrames: 16,\n  actionDelayInFrames: 2,\n  actionDurationInFrames: 24,\n  loop: false,\n} as const;\n\nexport function AlertTriangleIcon({\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 triangleProgress = interpolate(linearDraw, [0, 0.875], [0, 1], {\n    extrapolateLeft: \"clamp\",\n    extrapolateRight: \"clamp\",\n    easing: Easing.inOut(Easing.quad),\n  });\n  const stemProgress = interpolate(linearDraw, [0.625, 1], [0, 1], {\n    extrapolateLeft: \"clamp\",\n    extrapolateRight: \"clamp\",\n    easing: Easing.out(Easing.quad),\n  });\n  const dotPop = interpolate(linearDraw, [0.85, 1], [0, 1], {\n    extrapolateLeft: \"clamp\",\n    extrapolateRight: \"clamp\",\n    easing: Easing.out(Easing.back(1.8)),\n  });\n\n  const triangle = drawnPathProps(TRIANGLE_PATH, triangleProgress);\n  const stem = drawnPathProps(STEM_PATH, stemProgress);\n\n  const blinkOpacity = interpolate(\n    actionProgress,\n    [0, 0.2, 0.4, 0.6, 0.8],\n    [1, 0.25, 1, 0.25, 1],\n    { extrapolateLeft: \"clamp\", extrapolateRight: \"clamp\" },\n  );\n  const stemSquash = interpolate(\n    actionProgress,\n    [0, 0.2, 0.4, 0.6, 0.8],\n    [1, 0.85, 1, 0.85, 1],\n    { extrapolateLeft: \"clamp\", extrapolateRight: \"clamp\" },\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: `scale(${scale})`,\n      }}\n    >\n      <path\n        d={TRIANGLE_PATH}\n        strokeDasharray={triangle.strokeDasharray}\n        strokeDashoffset={triangle.strokeDashoffset}\n      />\n      <g opacity={blinkOpacity}>\n        <g\n          transform={`translate(12 13) scale(1 ${stemSquash}) translate(-12 -13)`}\n        >\n          <path\n            d={STEM_PATH}\n            strokeDasharray={stem.strokeDasharray}\n            strokeDashoffset={stem.strokeDashoffset}\n          />\n        </g>\n        <g transform={`translate(12 17) scale(${dotPop}) translate(-12 -17)`}>\n          <path d={DOT_PATH} />\n        </g>\n      </g>\n    </svg>\n  );\n}\n\nexport function AlertTriangleIconStatic({\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={TRIANGLE_PATH} />\n      <path d={STEM_PATH} />\n      <path d={DOT_PATH} />\n    </svg>\n  );\n}\n",
      "type": "registry:component",
      "target": "components/remocn/icon-alert-triangle.tsx"
    }
  ],
  "type": "registry:component"
}
