{ "name": "align-horizontal", "type": "registry:ui", "registryDependencies": [], "dependencies": [ "motion" ], "devDependencies": [], "tailwind": {}, "cssVars": { "light": {}, "dark": {} }, "files": [ { "path": "align-horizontal.tsx", "content": "'use client';\n\nimport type { Transition } from 'motion/react';\nimport { motion, useAnimation } from 'motion/react';\n\nconst defaultTransition: Transition = {\n type: 'spring',\n stiffness: 160,\n damping: 17,\n mass: 1,\n};\n\nconst AlignHorizontalIcon = () => {\n const controls = useAnimation();\n\n return (\n

controls.start('animate')}\n onMouseLeave={() => controls.start('normal')}\n >\n \n \n \n \n \n
\n );\n};\n\nexport { AlignHorizontalIcon };\n", "type": "registry:ui" } ] }