9 lines
195 B
TypeScript
9 lines
195 B
TypeScript
import type { ComponentType, ReactNode } from "react";
|
|
|
|
export type GBadgeProps = {
|
|
children?: ReactNode;
|
|
[key: string]: unknown;
|
|
};
|
|
|
|
export declare const GBadge: ComponentType<GBadgeProps>;
|