import { cn } from "@/lib/utils" import type { ReactNode } from "react" interface SurrealBadgeProps { children: ReactNode variant?: "default" | "primary" | "secondary" | "outline" className?: string } export function SurrealBadge({ children, variant = "default", className }: SurrealBadgeProps) { return ( {children} ) }