{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "blur-in-text",
  "title": "blur-in-text",
  "description": "A blur in text component.",
  "dependencies": [
    "motion",
    "react",
    "clsx"
  ],
  "files": [
    {
      "path": "registry/eldoraui/blur-in-text.tsx",
      "content": "\"use client\"\n\nimport clsx from \"clsx\"\nimport { motion } from \"motion/react\"\n\ninterface BlurInTextProps {\n  text?: string\n  className?: string\n}\n\nexport const BlurInText: React.FC<BlurInTextProps> = ({\n  text = \"\",\n  className = \"\",\n}) => {\n  const variants1 = {\n    hidden: { filter: \"blur(10px)\", opacity: 0 },\n    visible: { filter: \"blur(0px)\", opacity: 1 },\n  }\n\n  return (\n    <motion.h1\n      initial=\"hidden\"\n      animate=\"visible\"\n      transition={{ duration: 1 }}\n      variants={variants1}\n      className={clsx(\n        \"font-display text-center font-bold drop-shadow-sm\",\n        \"text-4xl md:text-5xl lg:text-6xl xl:text-7xl\",\n        \"tracking-[-0.02em]\",\n        \"md:leading-[4rem] lg:leading-[4.5rem] xl:leading-[5rem]\",\n        className\n      )}\n    >\n      {text}\n    </motion.h1>\n  )\n}\n",
      "type": "registry:ui"
    }
  ],
  "type": "registry:ui"
}