1 | ;
|
2 |
|
3 | Object.defineProperty(exports, "__esModule", {
|
4 | value: true
|
5 | });
|
6 | exports.default = deprecated;
|
7 | function deprecated(props, instead, component) {
|
8 | if (typeof window !== 'undefined' && window.console && window.console.error) {
|
9 | window.console.error("Warning: ".concat(props, " is deprecated at [ ").concat(component, " ], ") + "use [ ".concat(instead, " ] instead of it."));
|
10 | }
|
11 | } |
\ | No newline at end of file |