"use client"; import { forwardRef, type ButtonHTMLAttributes } from "react"; import { cn } from "@/lib/utils"; interface ShimmerButtonProps extends ButtonHTMLAttributes { shimmerColor?: string; background?: string; className?: string; } export const ShimmerButton = forwardRef( ( { shimmerColor = "rgba(201,169,110,0.55)", background = "var(--color-moy-dark)", className, children, ...props }, ref ) => ( ) ); ShimmerButton.displayName = "ShimmerButton";