@sofaws/dapp-core
Version:
A library to hold the main logic for a dapp on the Elrond Network
12 lines • 516 B
TypeScript
import { ReactNode } from 'react';
import { WithClassnameType } from '../../types';
export interface SimplePropsType extends WithClassnameType {
children: ReactNode;
}
export interface CombinedPropsType extends WithClassnameType {
small: boolean | undefined;
children: ReactNode;
}
export declare const Simple: ({ children, className }: SimplePropsType) => JSX.Element;
export declare const Combined: ({ small, children, className }: CombinedPropsType) => JSX.Element;
//# sourceMappingURL=index.d.ts.map