UNPKG

blockiesui

Version:

A UI library for Blockies

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