Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a62d3b8

Browse files
authoredJan 13, 2025··
Update shiny-button.tsx
1 parent c4b9655 commit a62d3b8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎components/ui/shiny-button.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ const ShinyButton = React.forwardRef<HTMLButtonElement, ShinyButtonProps>(
4444
{...props}
4545
className={cn(
4646
"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
47+
className,
4848
)}
4949
>
5050
<span
@@ -65,7 +65,7 @@ const ShinyButton = React.forwardRef<HTMLButtonElement, ShinyButtonProps>(
6565
></span>
6666
</motion.button>
6767
);
68-
}
68+
},
6969
);
7070

7171
ShinyButton.displayName = "ShinyButton";

0 commit comments

Comments
 (0)
Please sign in to comment.