{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "spotlight-section-shadcnui", "type": "registry:ui", "title": "Spotlight Section", "description": "Container where mouse creates soft radial spotlight following cursor", "dependencies": [ "framer-motion", "react" ], "files": [ { "path": "@uitripled/react-shadcn/src/components/motion-core/spotlight-section.tsx", "content": "\"use client\";\n\nimport { motion, useMotionValue, useSpring } from \"framer-motion\";\nimport { MouseEvent, useState } from \"react\";\n\ntype SpotlightSectionProps = {\n children: React.ReactNode;\n intensity?: number;\n size?: number;\n};\n\nexport function SpotlightSection({\n children = (\n
\n Move your mouse around to see the spotlight effect\n
\n