{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "demo-primitives-texts-shimmering",
  "title": "Shimmering Text Demo",
  "description": "Demo showing an animated shimmering text.",
  "registryDependencies": [
    "@animate-ui/primitives-texts-shimmering"
  ],
  "files": [
    {
      "path": "registry/demo/primitives/texts/shimmering/index.tsx",
      "content": "import { ShimmeringText } from '@/components/animate-ui/primitives/texts/shimmering';\n\ninterface ShimmeringTextDemoProps {\n  wave: boolean;\n  duration: number;\n}\n\nexport const ShimmeringTextDemo = ({\n  wave,\n  duration,\n}: ShimmeringTextDemoProps) => {\n  return (\n    <ShimmeringText\n      key={`${wave}-${duration}`}\n      className=\"text-4xl font-semibold\"\n      wave={wave}\n      duration={duration}\n      text=\"Shimmering Text\"\n    />\n  );\n};\n",
      "type": "registry:ui",
      "target": "components/animate-ui/demo/primitives/texts/shimmering.tsx"
    }
  ],
  "meta": {
    "demoProps": {
      "ShimmeringText": {
        "wave": {
          "value": false
        },
        "duration": {
          "value": 1,
          "min": 0.1,
          "max": 3,
          "step": 0.1
        }
      }
    }
  },
  "type": "registry:ui"
}