mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-02 20:19:44 +08:00
11 lines
205 B
TypeScript
Executable File
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;
|