UNPKG

@lifi/widget

Version:

LI.FI Widget for cross-chain bridging and swapping. It will drive your multi-chain strategy and attract new users from everywhere.

13 lines (12 loc) 344 B
import type { DrawerProps } from '@mui/material'; import type { RefObject } from 'react'; export type BottomSheetProps = Omit<DrawerProps, 'onClose'> & { elementRef?: RefObject<HTMLDivElement>; onClose?(): void; keepMounted?: boolean; }; export interface BottomSheetBase { isOpen(): void; open(): void; close(): void; }