UNPKG

brahma-test-widget

Version:

A React component for trade automation within the Brahma ecosystem.

17 lines 599 B
import React from 'react'; type ModalProps = { children: React.ReactNode; isOpen: boolean; onClickOutside?: () => void; overlay?: boolean; top?: number; zIndex?: number; isCenterAligned?: boolean; marginBottom?: string; bgOpacity?: number; bgComponent?: React.ReactNode; style?: React.CSSProperties; }; export default function Modal({ children, isOpen, onClickOutside, top, zIndex, overlay, isCenterAligned, marginBottom, bgOpacity, bgComponent, style }: ModalProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=index.d.ts.map