pragmate-ui
Version:
An advanced, on-demand React UI library optimized for BeyondJS. Pragmate UI provides modular, responsive, and accessible components with a focus on efficient bundle sizes and a streamlined development process.
30 lines (26 loc) • 695 B
TypeScript
/************
Processor: ts
************/
import __beyond_dep_def_0 from 'react';
import * as __beyond_dep_ns_1 from 'pragmate-ui/base';
// index.tsx
declare namespace ns_0 {
import React = __beyond_dep_def_0;
import IPUIProps = __beyond_dep_ns_1.IPUIProps;
interface IProps extends Partial<IPUIProps> {
visible?: boolean;
dot?: boolean;
value: string;
children?: React.ReactNode;
}
export function Badge({
children,
value,
visible,
variant,
dot
}: IProps): React.JSX.Element;
export {};
}
export import Badge = ns_0.Badge;
export declare const hmr: {on: (event: string, listener: any) => void, off: (event: string, listener: any) => void };