|
| 1 | +"use client"; |
| 2 | + |
| 3 | +import React from "react"; |
| 4 | +import { |
| 5 | + motion, |
| 6 | + type AnimationProps, |
| 7 | + type HTMLMotionProps, |
| 8 | +} from "motion/react"; |
| 9 | +import { cn } from "@/lib/utils"; |
| 10 | + |
| 11 | +const animationProps = { |
| 12 | + initial: { "--x": "100%", scale: 0.8 }, |
| 13 | + animate: { "--x": "-100%", scale: 1 }, |
| 14 | + whileTap: { scale: 0.95 }, |
| 15 | + transition: { |
| 16 | + repeat: Infinity, |
| 17 | + repeatType: "loop", |
| 18 | + repeatDelay: 1, |
| 19 | + type: "spring", |
| 20 | + stiffness: 20, |
| 21 | + damping: 15, |
| 22 | + mass: 2, |
| 23 | + scale: { |
| 24 | + type: "spring", |
| 25 | + stiffness: 200, |
| 26 | + damping: 5, |
| 27 | + mass: 0.5, |
| 28 | + }, |
| 29 | + }, |
| 30 | +} as AnimationProps; |
| 31 | + |
| 32 | +interface ShinyButtonProps extends HTMLMotionProps<"button"> { |
| 33 | + children: React.ReactNode; |
| 34 | + className?: string; |
| 35 | + ref?: React.Ref<HTMLButtonElement>; |
| 36 | +} |
| 37 | + |
| 38 | +const ShinyButton = React.forwardRef<HTMLButtonElement, ShinyButtonProps>( |
| 39 | + ({ children, className, ...props }, ref) => { |
| 40 | + return ( |
| 41 | + <motion.button |
| 42 | + ref={ref} |
| 43 | + {...animationProps} |
| 44 | + {...props} |
| 45 | + className={cn( |
| 46 | + "relative rounded-lg px-6 py-2 font-medium backdrop-blur-xl transition-shadow duration-300 ease-in-out hover:shadow dark:bg-[radial-gradient(circle_at_50%_0%,hsl(var(--primary)/10%)_0%,transparent_60%)] dark:hover:shadow-[0_0_20px_hsl(var(--primary)/10%)]", |
| 47 | + className |
| 48 | + )} |
| 49 | + > |
| 50 | + <span |
| 51 | + className="relative block size-full text-sm uppercase tracking-wide text-[rgb(0,0,0,65%)] dark:font-light dark:text-[rgb(255,255,255,90%)]" |
| 52 | + style={{ |
| 53 | + maskImage: |
| 54 | + "linear-gradient(-75deg,hsl(var(--primary)) calc(var(--x) + 20%),transparent calc(var(--x) + 30%),hsl(var(--primary)) calc(var(--x) + 100%))", |
| 55 | + }} |
| 56 | + > |
| 57 | + {children} |
| 58 | + </span> |
| 59 | + <span |
| 60 | + style={{ |
| 61 | + mask: "linear-gradient(rgb(0,0,0), rgb(0,0,0)) content-box,linear-gradient(rgb(0,0,0), rgb(0,0,0))", |
| 62 | + maskComposite: "exclude", |
| 63 | + }} |
| 64 | + className="absolute inset-0 z-10 block rounded-[inherit] bg-[linear-gradient(-75deg,hsl(var(--primary)/10%)_calc(var(--x)+20%),hsl(var(--primary)/50%)_calc(var(--x)+25%),hsl(var(--primary)/10%)_calc(var(--x)+100%))] p-px" |
| 65 | + ></span> |
| 66 | + </motion.button> |
| 67 | + ); |
| 68 | + } |
| 69 | +); |
| 70 | + |
| 71 | +ShinyButton.displayName = "ShinyButton"; |
| 72 | + |
| 73 | +export default ShinyButton; |
0 commit comments