Components
Loading preview...
An animated button with a shimmer gradient effect that moves across the surface. Supports dark mode.
@Shatlyk1011
npx shadcn@latest add https://21st.dev/r/Shatlyk1011/shimmer-buttonimport ShimmerButton from "../components/ui/shimmer-button";
export default function Demo() {
return (
<>
<style>{`@keyframes shimmer2 { 0% { background-position: 0% 0%; } 100% { background-position: -200% 0%; } }`}</style>
<div className="flex items-center justify-center min-h-screen bg-background">
<ShimmerButton>Shimmer</ShimmerButton>
</div>
</>
);
}