UNPKG

chat-frontend-library

Version:

``` npm install chat-frontend-library --save ```

10 lines (9 loc) 345 B
import "./CustomErrorModal.scss"; interface ICustomErrorModalProps { isOpen: boolean; message: string; cbHandleClose: () => void; isError: boolean; } declare const CustomErrorModal: ({ isOpen, message, cbHandleClose, isError }: ICustomErrorModalProps) => import("react/jsx-runtime").JSX.Element; export default CustomErrorModal;