UNPKG

@sofaws/dapp-core

Version:

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

11 lines 448 B
import { PropsWithChildren } from 'react'; import { WithClassnameType } from '../types'; export interface ExplorerLinkPropsType extends PropsWithChildren, WithClassnameType { page: string; text?: any; title?: string; onClick?: () => void; 'data-testid'?: string; } export declare const ExplorerLink: ({ page, text, className, children, ...rest }: ExplorerLinkPropsType) => JSX.Element; //# sourceMappingURL=ExplorerLink.d.ts.map