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