PromoCursed/node_modules/antd/es/icon/index.js

11 lines
310 B
JavaScript
Raw Normal View History

2024-08-20 23:25:37 +04:00
"use client";
import { devUseWarning } from '../_util/warning';
const Icon = () => {
if (process.env.NODE_ENV !== 'production') {
const warning = devUseWarning('Icon');
process.env.NODE_ENV !== "production" ? warning(false, 'usage', 'Empty Icon') : void 0;
}
return null;
};
export default Icon;