18 lines
477 B
TypeScript
18 lines
477 B
TypeScript
import * as React from "react";
|
|
import { type VariantProps } from "class-variance-authority";
|
|
|
|
import { cn } from "@/util/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 };
|