{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "receipt-text",
  "type": "registry:ui",
  "registryDependencies": [],
  "dependencies": ["motion"],
  "devDependencies": [],
  "files": [
    {
      "path": "receipt-text.tsx",
      "content": "\"use client\";\n\nimport { motion, useAnimation, type Variants } from \"motion/react\";\nimport type { HTMLAttributes } from \"react\";\nimport { forwardRef, useCallback, useImperativeHandle, useRef } from \"react\";\nimport { cn } from \"@/lib/utils\";\n\nexport interface ReceiptTextIconHandle {\n  startAnimation: () => void;\n  stopAnimation: () => void;\n}\n\ninterface ReceiptTextIconProps extends HTMLAttributes<HTMLDivElement> {\n  size?: number;\n}\n\nconst LINES_CONTAINER_VARIANTS: Variants = {\n  visible: {\n    transition: { staggerChildren: 0.1, delayChildren: 0 },\n  },\n  hidden: {\n    transition: { staggerChildren: 0.06, staggerDirection: -1 },\n  },\n};\n\nconst LINE_VARIANTS: Variants = {\n  visible: {\n    pathLength: 1,\n    opacity: 1,\n    transition: { duration: 0.35, ease: \"linear\" },\n  },\n  hidden: {\n    pathLength: 0,\n    opacity: 1,\n    transition: { duration: 0.2, ease: \"linear\" },\n  },\n};\n\nconst ReceiptTextIcon = forwardRef<ReceiptTextIconHandle, ReceiptTextIconProps>(\n  ({ onMouseEnter, onMouseLeave, className, size = 28, ...props }, ref) => {\n    const controls = useAnimation();\n    const isControlledRef = useRef(false);\n\n    const replayLines = useCallback(async () => {\n      await controls.start(\"hidden\");\n      await controls.start(\"visible\");\n    }, [controls]);\n\n    useImperativeHandle(ref, () => {\n      isControlledRef.current = ref != null;\n      return {\n        startAnimation: () => replayLines(),\n        stopAnimation: () => controls.start(\"visible\"),\n      };\n    }, [controls, ref, replayLines]);\n\n    const handleMouseEnter = useCallback(\n      async (e: React.MouseEvent<HTMLDivElement>) => {\n        if (isControlledRef.current) {\n          onMouseEnter?.(e);\n        } else {\n          await replayLines();\n        }\n      },\n      [onMouseEnter, replayLines]\n    );\n\n    const handleMouseLeave = useCallback(\n      (e: React.MouseEvent<HTMLDivElement>) => {\n        if (isControlledRef.current) {\n          onMouseLeave?.(e);\n        } else {\n          controls.start(\"visible\");\n        }\n      },\n      [controls, onMouseLeave]\n    );\n\n    return (\n      <div\n        className={cn(className)}\n        onMouseEnter={handleMouseEnter}\n        onMouseLeave={handleMouseLeave}\n        {...props}\n      >\n        <motion.svg\n          fill=\"none\"\n          height={size}\n          stroke=\"currentColor\"\n          strokeLinecap=\"round\"\n          strokeLinejoin=\"round\"\n          strokeWidth=\"2\"\n          viewBox=\"0 0 24 24\"\n          width={size}\n          xmlns=\"http://www.w3.org/2000/svg\"\n        >\n          <path d=\"M4 3a1 1 0 0 1 1-1 1.3 1.3 0 0 1 .7.2l.933.6a1.3 1.3 0 0 0 1.4 0l.934-.6a1.3 1.3 0 0 1 1.4 0l.933.6a1.3 1.3 0 0 0 1.4 0l.933-.6a1.3 1.3 0 0 1 1.4 0l.934.6a1.3 1.3 0 0 0 1.4 0l.933-.6A1.3 1.3 0 0 1 19 2a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1 1.3 1.3 0 0 1-.7-.2l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.934.6a1.3 1.3 0 0 1-1.4 0l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-1.4 0l-.934-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-.7.2 1 1 0 0 1-1-1z\" />\n          <motion.g\n            animate={controls}\n            initial=\"visible\"\n            variants={LINES_CONTAINER_VARIANTS}\n          >\n            <motion.path d=\"M8 8H14\" variants={LINE_VARIANTS} />\n            <motion.path d=\"M8 12H16\" variants={LINE_VARIANTS} />\n            <motion.path d=\"M8 16H13\" variants={LINE_VARIANTS} />\n          </motion.g>\n        </motion.svg>\n      </div>\n    );\n  }\n);\n\nReceiptTextIcon.displayName = \"ReceiptTextIcon\";\n\nexport { ReceiptTextIcon };\n",
      "type": "registry:ui"
    }
  ]
}
