import { cn } from "@/lib/utils" import { forwardRef } from "react" interface BadgeProps extends React.HTMLAttributes { variant?: "primary" | "secondary" | "outline" } const Badge = forwardRef( ({ className, variant = "primary", children, ...props }, ref) => { return ( {children} ) } ) Badge.displayName = "Badge" export default Badge