UNPKG

mui-tw-components

Version:

````markdown # **mui-tw-components - Reusable UI Components**

15 lines (14 loc) 395 B
import React from 'react'; export type AlertType = 'success' | 'error' | 'warning' | 'info' | 'question'; interface CustomAlertProps { type: AlertType; title?: string; text: string; isBehindVisible?: boolean; isConfirmBtn?: boolean; countdown?: number; popupCustomClass?: string; id?: string; } export declare const Alerts: React.FC<CustomAlertProps>; export {};