@fluster.io/dev
Version:
10 lines (9 loc) • 511 B
TypeScript
import { VariantProps } from 'class-variance-authority';
import * as React from "react";
declare const badgeVariants: (props?: ({
variant?: "default" | "secondary" | "destructive" | "outline" | null | undefined;
} & import('class-variance-authority/types').ClassProp) | undefined) => string;
declare function Badge({ className, variant, asChild, ...props }: React.ComponentProps<"span"> & VariantProps<typeof badgeVariants> & {
asChild?: boolean;
}): React.JSX.Element;
export { Badge, badgeVariants };