@afzalimdad9/react-alert-template-oldschool-dark
Version:
> Alert template for [@afzalimdad9/react-alert](https://github.com/afzalimdad9/react-alert) that replicate the same look of the dark theme in old versions of the lib
12 lines • 375 B
TypeScript
import React from 'react';
interface AlertTemplateProps {
message: string;
options: {
type: "error" | "success" | "info";
};
style: React.CSSProperties;
close: () => void;
}
declare const AlertTemplate: ({ message, options, style, close }: AlertTemplateProps) => React.JSX.Element;
export default AlertTemplate;
//# sourceMappingURL=index.d.ts.map