antd-hz
Version:
华卓科技基于 antd 5.0 定制的组件库
11 lines (10 loc) • 310 B
JavaScript
"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;