UNPKG

btc-wallet

Version:

BTC Wallet is a toolkit that enables Bitcoin usage on the NEAR blockchain through the Satoshi protocol.

12 lines (11 loc) 434 B
import { type CSSProperties, type ReactNode } from 'react'; interface ModalProp { open: boolean; onClose: () => void; children: ReactNode; isDismissable?: boolean; contentStyle?: CSSProperties | undefined; contentClassName?: string; } declare const Modal: ({ open, onClose, children, isDismissable, contentStyle, contentClassName }: ModalProp) => import("react/jsx-runtime").JSX.Element; export default Modal;