{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "shader-warp",
  "title": "Shader Warp",
  "description": "Domain-warped color field that folds and stretches like liquid.",
  "dependencies": ["@paper-design/shaders-react"],
  "files": [
    {
      "path": "registry/remocn/shader-warp/index.tsx",
      "content": "\"use client\";\n\nimport { Warp, type WarpProps } from \"@paper-design/shaders-react\";\nimport { useCallback, useState } from \"react\";\nimport {\n  continueRender,\n  delayRender,\n  useCurrentFrame,\n  useVideoConfig,\n} from \"remotion\";\n\nconst NEUTRAL_COLORS = [\"#12121a\", \"#3a3a5c\", \"#12121a\", \"#52527a\"];\n\nexport interface ShaderWarpProps extends Omit<WarpProps, \"frame\" | \"ref\"> {}\n\nexport function ShaderWarp({\n  speed = 1,\n  colors = NEUTRAL_COLORS,\n  proportion = 0.5,\n  softness = 1,\n  distortion = 0.2,\n  swirl = 0.4,\n  className,\n  ...rest\n}: ShaderWarpProps) {\n  const frame = useCurrentFrame();\n  const { fps, width, height } = useVideoConfig();\n\n  const [handle] = useState(() => delayRender(\"shader-warp\"));\n  const gate = useCallback(\n    (element: HTMLDivElement | null) => {\n      if (!element) return;\n      requestAnimationFrame(() =>\n        requestAnimationFrame(() => continueRender(handle)),\n      );\n    },\n    [handle],\n  );\n\n  return (\n    <div\n      ref={gate}\n      className={className}\n      style={{ position: \"absolute\", inset: 0 }}\n    >\n      <Warp\n        speed={0}\n        frame={(frame / fps) * speed * 1000}\n        colors={colors}\n        proportion={proportion}\n        softness={softness}\n        distortion={distortion}\n        swirl={swirl}\n        fit=\"cover\"\n        width={width}\n        height={height}\n        {...rest}\n      />\n    </div>\n  );\n}\n",
      "type": "registry:component",
      "target": "components/remocn/shader-warp.tsx"
    }
  ],
  "type": "registry:component"
}
