{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "elastic-switch-shadcnui", "type": "registry:ui", "title": "Elastic Toggle Switch", "description": "Toggle switch with elastic spring animation", "dependencies": [ "framer-motion", "react" ], "files": [ { "path": "@uitripled/react-shadcn/src/components/micro/toggles/elastic-switch.tsx", "content": "\"use client\";\n\nimport { motion } from \"framer-motion\";\nimport { useState } from \"react\";\n\nexport function ElasticSwitch() {\n const [isOn, setIsOn] = useState(false);\n\n return (\n