import { cn } from "@/lib/utils" import { forwardRef, type ButtonHTMLAttributes } from "react" interface SurrealButtonProps extends ButtonHTMLAttributes { variant?: "primary" | "secondary" | "ghost" | "outline" size?: "sm" | "md" | "lg" } export const SurrealButton = forwardRef( ({ className, variant = "primary", size = "md", children, ...props }, ref) => { return ( ) }, ) SurrealButton.displayName = "SurrealButton"