@rakhimgaliyev/react-bottom-sheet
Version:
[](https://www.npmjs.com/package/@rakhimgaliyev/react-bottom-sheet) [![gzip size][gzip-badge]][unpkg-dist]
12 lines (11 loc) • 321 B
TypeScript
import React from 'react';
declare type PropsType = {
open: boolean;
setOpen: (open: boolean) => void;
children: React.ReactNode;
header?: React.ReactNode;
footer?: React.ReactNode;
horizontalScrollElRef?: any;
};
export declare const BottomSheetDialog: React.FC<PropsType>;
export {};