import { Button as ShadcnButton } from "@/components/ui/button"; import { cn } from "@/lib/utils"; import { forwardRef } from "react"; export interface ButtonProps extends React.ButtonHTMLAttributes { variant?: "default" | "destructive" | "outline" | "secondary" | "ghost" | "link"; size?: "default" | "sm" | "lg" | "icon"; asChild?: boolean; } const Button = forwardRef( ({ className, variant = "default", size = "default", ...props }, ref) => { return ( ); } ); Button.displayName = "Button"; export { Button };