UNPKG

hello-csv

Version:

A modern CSV importer written in Preact

9 lines 301 B
import { ReactNode } from '../../shims/react-compat-shim.js'; type BadgeVariant = 'primary' | 'success' | 'error'; interface Props { children?: ReactNode; variant?: BadgeVariant; } export default function Badge({ children, variant }: Props): any; export {}; //# sourceMappingURL=Badge.d.ts.map