{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "icon-users",
  "title": "Users",
  "description": "Animated Lucide users icon — the front figure draws on and pops, then the second figure slides in from behind: the team assembles.",
  "dependencies": ["remotion"],
  "registryDependencies": ["@remocn/icons-core"],
  "files": [
    {
      "path": "registry/remocn-icons/icon-users/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 HEAD_PATH =\n  \"M9 3 A4 4 0 0 1 13 7 A4 4 0 0 1 9 11 A4 4 0 0 1 5 7 A4 4 0 0 1 9 3\";\nconst SHOULDERS_PATH = \"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2\";\nconst BACK_HEAD_PATH = \"M16 3.128a4 4 0 0 1 0 7.744\";\nconst BACK_SHOULDERS_PATH = \"M22 21v-2a4 4 0 0 0-3-3.87\";\n\nconst TIMINGS = {\n  drawDurationInFrames: 14,\n  actionDelayInFrames: 2,\n  actionDurationInFrames: 24,\n  loop: false,\n} as const;\n\nexport function UsersIcon({\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  const acting = animation !== \"draw\" && actionFrame >= 0;\n\n  const headDraw = interpolate(linearDraw, [0, 0.71], [0, 1], {\n    extrapolateLeft: \"clamp\",\n    extrapolateRight: \"clamp\",\n    easing: Easing.out(Easing.quad),\n  });\n  const shouldersDraw = interpolate(linearDraw, [0.43, 1], [0, 1], {\n    extrapolateLeft: \"clamp\",\n    extrapolateRight: \"clamp\",\n    easing: Easing.out(Easing.quad),\n  });\n\n  const pop = acting\n    ? interpolate(actionProgress, [0, 0.25, 0.42], [1, 1.08, 1], {\n        extrapolateLeft: \"clamp\",\n        extrapolateRight: \"clamp\",\n        easing: Easing.inOut(Easing.quad),\n      })\n    : 1;\n  const backOpacity = acting\n    ? interpolate(actionProgress, [0.33, 0.9], [0, 1], {\n        extrapolateLeft: \"clamp\",\n        extrapolateRight: \"clamp\",\n      })\n    : 0;\n  const backSlide = acting\n    ? interpolate(actionProgress, [0.33, 1], [-2, 0], {\n        extrapolateLeft: \"clamp\",\n        extrapolateRight: \"clamp\",\n        easing: Easing.out(Easing.quad),\n      })\n    : -2;\n\n  const head = drawnPathProps(HEAD_PATH, headDraw);\n  const shoulders = drawnPathProps(SHOULDERS_PATH, shouldersDraw);\n\n  const scale = 0.85 + 0.15 * scaleIn;\n  const frontTransform = `translate(${9 * (1 - pop)} ${12 * (1 - pop)}) scale(${pop})`;\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(${backSlide} 0)`} opacity={backOpacity}>\n        <path d={BACK_HEAD_PATH} />\n        <path d={BACK_SHOULDERS_PATH} />\n      </g>\n      <g transform={frontTransform}>\n        <path\n          d={HEAD_PATH}\n          strokeDasharray={head.strokeDasharray}\n          strokeDashoffset={head.strokeDashoffset}\n        />\n        <path\n          d={SHOULDERS_PATH}\n          strokeDasharray={shoulders.strokeDasharray}\n          strokeDashoffset={shoulders.strokeDashoffset}\n        />\n      </g>\n    </svg>\n  );\n}\n\nexport function UsersIconStatic({\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={SHOULDERS_PATH} />\n      <path d={BACK_HEAD_PATH} />\n      <path d={BACK_SHOULDERS_PATH} />\n      <circle cx=\"9\" cy=\"7\" r=\"4\" />\n    </svg>\n  );\n}\n",
      "type": "registry:component",
      "target": "components/remocn/icon-users.tsx"
    }
  ],
  "type": "registry:component"
}
