()
| 3 | import { motion } from 'framer-motion' |
| 4 | |
| 5 | const BounceButton = () => { |
| 6 | return ( |
| 7 | <div> |
| 8 | <motion.button |
| 9 | whileHover={{ scale: 1.1 }} |
| 10 | className="rounded-xl bg-red-500 px-6 py-2 text-sm font-medium text-white" |
| 11 | transition={{ type: 'spring', stiffness: 400, damping: 10 }} |
| 12 | > |
| 13 | SyntaxUI |
| 14 | </motion.button> |
| 15 | </div> |
| 16 | ) |
| 17 | } |
| 18 | |
| 19 | export default BounceButton |
nothing calls this directly
no outgoing calls
no test coverage detected