UNPKG

@plteam/chat-ui

Version:

CUI Kit is a free and open-source library for creating AI assistant chat interfaces, built with React, Material UI, and TypeScript

12 lines (11 loc) 328 B
import * as React from 'react'; type Props = React.PropsWithChildren<{ open: boolean; onClose: () => void; title?: string | string[]; disableCustomScrollbar?: boolean; keepMounted?: boolean; className?: string; }>; declare const MdBottomDrawer: React.FC<Props>; export default MdBottomDrawer;