{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "text-shimmer", "type": "registry:ui", "title": "Text Shimmer", "description": "Sweeping gradient text animation effect.", "dependencies": [], "registryDependencies": [], "files": [ { "path": "registry/starkui/text-shimmer.tsx", "content": "import * as React from \"react\";\nimport { cn } from \"@/lib/utils\";\n\nexport interface TextShimmerProps extends React.HTMLAttributes {\n children: string;\n duration?: number;\n}\n\nexport function TextShimmer({\n children,\n className,\n duration = 2.5,\n ...props\n}: TextShimmerProps) {\n return (\n \n {children}\n \n );\n}\n", "type": "registry:ui", "target": "components/ui/text-shimmer.tsx" } ] }