uikit/dist/remote-ui.d.ts
Mohamadzadeh 56a365c6b4
All checks were successful
Build and Deploy Next.js + Nginx Docker Image / build-and-deploy (push) Successful in 50s
Build and Deploy Next.js + Nginx Docker Image / deploy (push) Successful in 7s
auto build
2026-07-09 13:34:48 +03:30

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>;