{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "directional-wipe", "title": "Directional Wipe", "description": "Slide one scene in while pushing the other out.", "dependencies": [ "remotion" ], "files": [ { "path": "registry/remocn/directional-wipe/index.tsx", "content": "\"use client\";\n\nimport type { ReactNode } from \"react\";\nimport { Easing, interpolate, useCurrentFrame, useVideoConfig } from \"remotion\";\n\nexport interface DirectionalWipeProps {\n from?: ReactNode;\n to?: ReactNode;\n direction?: \"left\" | \"right\" | \"up\" | \"down\";\n transitionStart?: number;\n transitionDuration?: 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