{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "frosted-glass-wipe", "title": "Frosted Glass Wipe", "description": "Elegant scene transition through a sliding pane of frosted glass.", "dependencies": [ "remotion" ], "files": [ { "path": "registry/remocn/frosted-glass-wipe/index.tsx", "content": "\"use client\";\n\nimport type { ReactNode } from \"react\";\nimport { Easing, interpolate, useCurrentFrame, useVideoConfig } from \"remotion\";\n\nexport interface FrostedGlassWipeProps {\n from?: ReactNode;\n to?: ReactNode;\n transitionStart?: number;\n transitionDuration?: number;\n glassBlur?: number;\n speed?: number;\n className?: string;\n}\n\nconst FONT_FAMILY =\n \"var(--font-geist-sans), -apple-system, BlinkMacSystemFont, sans-serif\";\n\nfunction DefaultPanel({ label, color }: { label: string; color: string }) {\n return (\n