light-upload
Version:
The most powerful lightweight file upload component. Based on JS worker thread technology, it supports multi-threaded file uploads, uploads of files of any size, resumable uploads, and concurrent uploads. File uploads do not block the UI main thread. Note
10 lines (9 loc) • 520 B
TypeScript
import { VariantProps } from 'class-variance-authority';
import * as React from "react";
declare const badgeVariants: (props?: {
variant?: "default" | "destructive" | "outline" | "secondary";
} & import('class-variance-authority/types').ClassProp) => 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 };