Shimmer Button
tsx
import { ShimmerButton } from "@/components/godui/shimmer-button";export function ShimmerButtonDemo() {return <ShimmerButton variant="primary">Get started</ShimmerButton>;}<div className="flex flex-wrap items-center justify-center gap-4">
<ShimmerButton variant="primary">Continue</ShimmerButton>
<ShimmerButton variant="secondary">Learn more</ShimmerButton>
<ShimmerButton variant="outline">View pricing</ShimmerButton>
</div><div className="flex flex-wrap items-center justify-center gap-4">
<ShimmerButton size="sm">Small</ShimmerButton>
<ShimmerButton size="md">Medium</ShimmerButton>
<ShimmerButton size="lg">Large</ShimmerButton>
</div><ShimmerButton shimmer={false}>Get started</ShimmerButton><ShimmerButton disabled>Get started</ShimmerButton>import { ShimmerButton } from "@/components/godui/shimmer-button";export function ShimmerButtonDemo() {return <ShimmerButton variant="primary">Get started</ShimmerButton>;}