@coinmeca/ui
Version:
This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
19 lines • 510 B
TypeScript
import { Swipe } from "../../hooks/useSwipe";
export interface BottomSheet {
children?: any;
active?: boolean;
scale?: number;
height?: number | string | {
min?: number | string;
max?: number | string;
};
onBlur?: Function;
onClose?: Function;
style?: object;
zIndex?: number;
swipe?: Swipe & {
area?: number;
};
}
export default function BottomSheet(props: BottomSheet): import("react").JSX.Element;
//# sourceMappingURL=BottomSheet.d.ts.map