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

11 lines
310 B
JavaScript
Raw Normal View History

2025-11-12 11:35:57 +08: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;