@sofaws/dapp-core
Version:
A library to hold the main logic for a dapp on the Elrond Network
10 lines • 361 B
TypeScript
import { ReactNode } from 'react';
export interface DetailItemPropsType {
children: ReactNode;
title: string | ReactNode;
className?: string;
colWidth?: string;
noBorder?: boolean;
}
export declare const DetailItem: ({ children, title, className, colWidth, noBorder }: DetailItemPropsType) => JSX.Element;
//# sourceMappingURL=index.d.ts.map