import { cn } from "@/lib/utils"; import React, { CSSProperties } from "react"; export interface ShimmerButtonProps extends React.ButtonHTMLAttributes { shimmerColor?: string; shimmerSize?: string; borderRadius?: string; shimmerDuration?: string; background?: string; className?: string; children?: React.ReactNode; } const ShimmerButton = React.forwardRef( ( { shimmerColor = "#ffffff", shimmerSize = "0.1em", shimmerDuration = "1.5s", borderRadius = "100px", background = "rgba(0, 0, 0)", className, children, ...props }, ref ) => { return ( ); } ); ShimmerButton.displayName = "ShimmerButton"; export default ShimmerButton;