We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae011ee commit ceac7ceCopy full SHA for ceac7ce
website/app/components/hero.tsx
@@ -21,15 +21,18 @@ const Hero = () => {
21
<div className="animate-in fade-in-40 flex flex-col items-center space-y-2 duration-700 md:flex-row md:space-x-2 md:space-y-0">
22
<Button
23
variant="default"
24
- className="w-full md:w-40"
+ className="group w-full md:w-40"
25
onClick={() =>
26
toast.default({
27
text: 'pheralb/toast',
28
description: '✨ A beautiful toast library for React',
29
})
30
}
31
>
32
- <Sparkles size={14} />
+ <Sparkles
33
+ size={14}
34
+ className="duration-500 group-hover:animate-pulse group-hover:text-yellow-400"
35
+ />
36
<span>Render a toast</span>
37
</Button>
38
<ExternalLink
0 commit comments