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.

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