live: connect ship-log extension to /live page, fix repo link
This commit is contained in:
28
pledge-now-pay-later/src/components/ui/badge.tsx
Normal file
28
pledge-now-pay-later/src/components/ui/badge.tsx
Normal file
@@ -0,0 +1,28 @@
|
||||
import * as React from "react"
|
||||
import { cva, type VariantProps } from "class-variance-authority"
|
||||
import { cn } from "@/lib/utils"
|
||||
|
||||
const badgeVariants = cva(
|
||||
"inline-flex items-center rounded-full border px-2.5 py-0.5 text-xs font-semibold transition-colors",
|
||||
{
|
||||
variants: {
|
||||
variant: {
|
||||
default: "border-transparent bg-trust-blue text-white",
|
||||
secondary: "border-transparent bg-secondary text-secondary-foreground",
|
||||
success: "border-transparent bg-success-green/10 text-success-green",
|
||||
warning: "border-transparent bg-warm-amber/10 text-warm-amber",
|
||||
destructive: "border-transparent bg-danger-red/10 text-danger-red",
|
||||
outline: "text-foreground",
|
||||
},
|
||||
},
|
||||
defaultVariants: { variant: "default" },
|
||||
}
|
||||
)
|
||||
|
||||
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, badgeVariants }
|
||||
Reference in New Issue
Block a user