UNPKG

@forbespro/lead-agent

Version:
10 lines (9 loc) 558 B
import { VariantProps } from 'class-variance-authority'; import * as React from "react"; declare const badgeVariants: (props?: ({ variant?: "default" | "destructive" | "outline" | "secondary" | null | undefined; } & import('class-variance-authority/dist/types').ClassProp) | undefined) => string; export interface BadgeProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeVariants> { } declare function Badge({ className, variant, ...props }: BadgeProps): import("react/jsx-runtime").JSX.Element; export { Badge, badgeVariants };