{ "name": "shimmer-text", "type": "registry:component", "dependencies": [ "motion" ], "files": [ { "type": "registry:component", "content": "\"use client\";\n\n/**\n * @author: @dorianbaffier\n * @description: Shimmer Text\n * @version: 1.0.0\n * @date: 2025-06-26\n * @license: MIT\n * @website: https://kokonutui.com\n * @github: https://github.com/kokonut-labs/kokonutui\n */\n\nimport { motion } from \"motion/react\";\nimport { cn } from \"@/lib/utils\";\n\ninterface Text_01Props {\n text: string;\n className?: string;\n}\n\nexport default function ShimmerText({\n text = \"Text Shimmer\",\n className,\n}: Text_01Props) {\n return (\n
\n \n \n {text}\n \n \n
\n );\n}\n", "path": "/components/kokonutui/shimmer-text.tsx", "target": "components/kokonutui/shimmer-text.tsx" } ] }