@rakhimgaliyev/react-bottom-sheet
Version:
Congrats! You just saved yourself hours of work by bootstrapping this project with TSDX. Let’s get you oriented with what’s here and how to use it.
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 {};