ant-design/components/icon/index.ts
2023-07-15 16:03:53 +08:00

11 lines
205 B
TypeScript
Executable File

import warning from '../_util/warning';
const Icon: React.FC = () => {
if (process.env.NODE_ENV !== 'production') {
warning(false, 'Icon', 'Empty Icon');
}
return null;
};
export default Icon;