MCPcopy Create free account
hub / github.com/code100x/daily-code / BadgeProps

Interface BadgeProps

packages/ui/src/shad/ui/badge.tsx:23–23  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

21);
22
23export interface BadgeProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeVariants> {}
24
25function Badge({ className, variant, ...props }: BadgeProps) {
26 return <div className={cn(badgeVariants({ variant }), className)} {...props} />;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected