MCPcopy Create free account
hub / github.com/SyntaxUI/syntaxui / BounceButton

Function BounceButton

src/showcase/components/button/BounceButton.tsx:5–17  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

3import { motion } from 'framer-motion'
4
5const 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
19export default BounceButton

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected