16 lines
468 B
TypeScript
16 lines
468 B
TypeScript
import * as React from "react"
|
|
import { type VariantProps } from "class-variance-authority"
|
|
import { cn } from "@/lib/utils"
|
|
import { badgeVariants } from "./badge-variants"
|
|
|
|
export interface BadgeProps
|
|
extends React.HTMLAttributes<HTMLDivElement>,
|
|
VariantProps<typeof badgeVariants> {}
|
|
|
|
function Badge({ className, variant, ...props }: BadgeProps) {
|
|
return (
|
|
<div className={cn(badgeVariants({ variant }), className)} {...props} />
|
|
)
|
|
}
|
|
|
|
export { Badge } |