{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "shader-liquid-metal",
  "title": "Shader Liquid Metal",
  "description": "Molten metallic surface with flowing specular highlights.",
  "dependencies": ["@paper-design/shaders-react"],
  "files": [
    {
      "path": "registry/remocn/shader-liquid-metal/index.tsx",
      "content": "\"use client\";\n\nimport {\n  LiquidMetal,\n  type LiquidMetalProps,\n} from \"@paper-design/shaders-react\";\nimport { useCallback, useState } from \"react\";\nimport {\n  continueRender,\n  delayRender,\n  useCurrentFrame,\n  useVideoConfig,\n} from \"remotion\";\n\nexport interface ShaderLiquidMetalProps\n  extends Omit<LiquidMetalProps, \"frame\" | \"ref\"> {}\n\nexport function ShaderLiquidMetal({\n  speed = 1,\n  colorBack = \"#2a2a30\",\n  colorTint = \"#8a8a95\",\n  distortion = 0.1,\n  repetition = 1.5,\n  contour = 0.4,\n  softness = 0.05,\n  shape = \"none\",\n  className,\n  ...rest\n}: ShaderLiquidMetalProps) {\n  const frame = useCurrentFrame();\n  const { fps, width, height } = useVideoConfig();\n\n  const [handle] = useState(() => delayRender(\"shader-liquid-metal\"));\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      <LiquidMetal\n        speed={0}\n        frame={(frame / fps) * speed * 1000}\n        colorBack={colorBack}\n        colorTint={colorTint}\n        distortion={distortion}\n        repetition={repetition}\n        contour={contour}\n        softness={softness}\n        shape={shape}\n        fit=\"cover\"\n        width={width}\n        height={height}\n        {...rest}\n      />\n    </div>\n  );\n}\n",
      "type": "registry:component",
      "target": "components/remocn/shader-liquid-metal.tsx"
    }
  ],
  "type": "registry:component"
}
