-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
82 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
"use client"; | ||
|
||
import React from "react"; | ||
import { | ||
motion, | ||
type AnimationProps, | ||
type HTMLMotionProps, | ||
} from "framer-motion"; | ||
import { cn } from "@/utilities/shadcn-utils"; | ||
|
||
const animationProps = { | ||
initial: { "--x": "100%", scale: 0.8 }, | ||
animate: { "--x": "-100%", scale: 1 }, | ||
whileTap: { scale: 0.95 }, | ||
transition: { | ||
repeat: Infinity, | ||
repeatType: "loop", | ||
repeatDelay: 1, | ||
type: "spring", | ||
stiffness: 20, | ||
damping: 15, | ||
mass: 2, | ||
scale: { | ||
type: "spring", | ||
stiffness: 200, | ||
damping: 5, | ||
mass: 0.5, | ||
}, | ||
}, | ||
} as AnimationProps; | ||
|
||
interface ShinyButtonProps extends HTMLMotionProps<"button"> { | ||
children: React.ReactNode; | ||
className?: string; | ||
} | ||
|
||
const ShinyButton = React.forwardRef<HTMLButtonElement, ShinyButtonProps>( | ||
({ children, className, ...props }, ref) => { | ||
return ( | ||
<motion.button | ||
ref={ref} | ||
{...animationProps} | ||
{...props} | ||
className={cn( | ||
"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%)]", | ||
className, | ||
)} | ||
> | ||
<span | ||
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%)]" | ||
style={{ | ||
maskImage: | ||
"linear-gradient(-75deg,hsl(var(--primary)) calc(var(--x) + 20%),transparent calc(var(--x) + 30%),hsl(var(--primary)) calc(var(--x) + 100%))", | ||
}} | ||
> | ||
{children} | ||
</span> | ||
<span | ||
style={{ | ||
mask: "linear-gradient(rgb(0,0,0), rgb(0,0,0)) content-box,linear-gradient(rgb(0,0,0), rgb(0,0,0))", | ||
maskComposite: "exclude", | ||
}} | ||
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" | ||
></span> | ||
</motion.button> | ||
); | ||
}, | ||
); | ||
|
||
ShinyButton.displayName = "ShinyButton"; | ||
|
||
export default ShinyButton; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters