UNPKG

@sendbird/uikit-react

Version:

Sendbird UIKit for React: A feature-rich and customizable chat UI kit with messaging, channel management, and user authentication.

10 lines (9 loc) 278 B
import './bottom-sheet.scss'; import React from 'react'; interface BottomSheetProps { className?: string; children: React.ReactElement; onBackdropClick?: () => void; } declare const BottomSheet: React.FunctionComponent<BottomSheetProps>; export default BottomSheet;