Circle Menu
Dialog Form
Dominoes List Scroll
Dominoes Scroll Indicator
Eagle Vision
Electric AI Input
File Input
Flip Scroll
Glowing Scroll Indicator
Horizontal Scroll
Icon Wheel
Image Pile
Interactive CTA
Interactive Folder
Interest Picker
Jelly Loader
Leave Rating
Mask Cursor Effect
Magnet Tabs
Masonry Grid
OTP Input
Photo Gallery
Pixelated Carousel
Rolling Ball Scroll Indicator
Rubik Cube
Sidebar
Sine Wave
Skeumorphic Music Card
Social Media Card
Stacked Input Form
Stack Scroll
Trading Card
Shine Button
A button with a shining light that sweeps across the surface. Creates a polished, premium look for your interface.
Install dependencies
npm i framer-motion
Utility function
Create a file lib/utils.ts and paste this code
import { ClassValue, clsx } from 'clsx';
import { twMerge } from 'tailwind-merge';
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}
Shine Button
Create a file shine-button.tsx in your components folder and paste this code
import { cn } from '@/lib/utils';
import { motion, MotionProps } from 'framer-motion';
import React, { ButtonHTMLAttributes } from 'react';
type ShineButtonProps = {
className?: string;
children: React.ReactNode;
} & MotionProps &
ButtonHTMLAttributes<HTMLButtonElement>;
const ShineButton: React.FC<ShineButtonProps> = ({ children, className, ...props }) => {
return (
<button
{...props}
className={cn(
`relative overflow-hidden rounded-xl border border-neutral-700 px-4 py-2 text-white transition-all duration-300 hover:border-neutral-400 hover:shadow-[0_0_10px_rgba(255,255,255,0.2)]`,
`hover:shadow-sm hover:shadow-white/30`,
'hover:bg-zinc-900',
className
)}
>
<motion.span
className="absolute -left-full top-0 h-full w-[150%] blur-[6px] opacity-50 hover:opacity-100"
initial={{ x: '-150%' }}
animate={{ x: '150%' }}
style={{
background: 'linear-gradient(-55deg, transparent 40%, #ffffffbb 50%, transparent 60%)'
}}
transition={{
duration: 1.5,
repeat: Infinity,
ease: 'linear'
}}
/>
<div className="relative z-10 flex items-center">{children}</div>
</button>
);
};
export default ShineButton;
Usage
<ShineButton>Continue</ShineButton>