UNPKG

@sofaws/dapp-core

Version:

A library to hold the main logic for a dapp on the Elrond Network

11 lines 515 B
/// <reference types="react" /> import { WithClassnameType } from '../../types'; export interface DappModalHeaderPropsType extends WithClassnameType { visible?: boolean; headerText?: string; customHeader?: JSX.Element | string; closeButtonClassName?: string; onHide?: () => void; } export declare const DappModalHeader: ({ visible, headerText, customHeader, className, closeButtonClassName, onHide }: DappModalHeaderPropsType) => JSX.Element | null; //# sourceMappingURL=DappModalHeader.d.ts.map