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