@lidofinance/toast
Version:
React component for Lido Finance projects based on React-Toastify (https://github.com/fkhadra/react-toastify). Part of [Lido UI Components](https://github.com/lidofinance/ui/#readme)
29 lines (23 loc) • 906 B
JavaScript
;
Object.defineProperty(exports, '__esModule', { value: true });
var reactToastify = require('react-toastify');
var ToastContainer = require('./ToastContainer.js');
var ToastDefault = require('./ToastDefault.js');
var ToastError = require('./ToastError.js');
var ToastInfo = require('./ToastInfo.js');
var ToastPending = require('./ToastPending.js');
var ToastSuccess = require('./ToastSuccess.js');
var types = require('./types.js');
Object.defineProperty(exports, 'toast', {
enumerable: true,
get: function () {
return reactToastify.toast;
}
});
exports.ToastContainer = ToastContainer.ToastContainer;
exports.ToastDefault = ToastDefault.ToastDefault;
exports.ToastError = ToastError.ToastError;
exports.ToastInfo = ToastInfo.ToastInfo;
exports.ToastPending = ToastPending.ToastPending;
exports.ToastSuccess = ToastSuccess.ToastSuccess;
exports.ToastPosition = types.ToastPosition;