UNPKG

solive-core

Version:

Solidity Monaco Editor Core Library

20 lines 561 B
import React from 'react'; type TNavProps<T> = { label: string; id: string; data?: T; }; type TProps = { /** * @dev The unique ID of the global Editor. */ globalId?: string; activeNavId?: string; navs?: TNavProps<any>[]; onClick?: (nav: TNavProps<any>, index: number) => void; onDeleteClick?: (nav: TNavProps<any>, index: number) => void; placeholderElement?: React.ReactNode; }; declare function NavBar(props: TProps): JSX.Element; export default NavBar; //# sourceMappingURL=NavBar.d.ts.map