{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "kinetic-type-mask", "title": "Kinetic Type Mask", "description": "Use giant typography as a window into the next scene.", "dependencies": [ "remotion" ], "files": [ { "path": "registry/remocn/kinetic-type-mask/index.tsx", "content": "\"use client\";\n\nimport { type ReactNode, useId } from \"react\";\nimport { Easing, interpolate, useCurrentFrame, useVideoConfig } from \"remotion\";\n\nexport interface KineticTypeMaskProps {\n from?: ReactNode;\n to?: ReactNode;\n text?: string;\n transitionStart?: number;\n holdFrames?: number;\n transitionDuration?: number;\n maxScale?: 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