registry:component
Bounce Button
v1.0.0ga
Animated button primitive with bounce motion feedback.
Registry Endpoint
Open JSONhttps://registry.aavya.com/r/ui-bounce-button.json
npx shadcn@latest add https://registry.aavya.com/r/ui-bounce-button.json
Live Preview
Usage Snippet
import BounceButton from '@/components/ui/bounce-button.tsx'
export default function Example() {
return (
<div className="p-6">
<BounceButton />
</div>
)
}
Source Preview
'use client'
import * as React from 'react'
import { motion, type HTMLMotionProps } from 'motion/react'
import type { VariantProps } from 'class-variance-authority'
import { cn } from '@/lib/utils'
import { buttonVariants } from '@/components/ui/button'
interface BounceButtonProps extends HTMLMotionProps<'button'>, VariantProps<typeof buttonVariants> {
children: React.ReactNode
}
function BounceButton({ children, className, size, variant, ...props }: BounceButtonProps) {
return (
<motion.button
whileHover={{ scale: 1.1 }}
className={cn(buttonVariants({ variant, size }), 'transition-none', className)}
transition={{ type: 'spring', stiffness: 400, damping: 10 }}
{...props}
>
{children}
</motion.button>
)
}
export { BounceButton, type BounceButtonProps }