| 24 | ); |
| 25 | |
| 26 | export interface BadgeProps |
| 27 | extends React.HTMLAttributes<HTMLDivElement>, |
| 28 | VariantProps<typeof badgeVariants> {} |
| 29 | |
| 30 | function Badge({ className, variant, ...props }: BadgeProps) { |
| 31 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected