diff --git a/src/components/ui/Badge.tsx b/src/components/ui/Badge.tsx new file mode 100644 index 0000000..1b3ed21 --- /dev/null +++ b/src/components/ui/Badge.tsx @@ -0,0 +1,27 @@ +import type { ReactNode } from "react" +import { cn } from "@/lib/utils" + +interface BadgeProps { + children: ReactNode + variant?: "primary" | "secondary" | "accent" | "outline" + className?: string +} + +export default function Badge({ children, variant = "primary", className }: BadgeProps) { + return ( + + {children} + + ) +} \ No newline at end of file