diff --git a/src/components/ui/Badge.tsx b/src/components/ui/Badge.tsx new file mode 100644 index 0000000..0d02692 --- /dev/null +++ b/src/components/ui/Badge.tsx @@ -0,0 +1,32 @@ +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