ant-design/components/icon/index.ts
lijianan 9aec72c395
chore: remove useless tsx support (#39890)
* chore: remove useless tsx support

* add

* add

* style

* fix lint

* fix lint

* fix lint

* update locale entry

* update locale entry

* update locale entry

* delete useless style
2022-12-29 18:33:13 +08:00

9 lines
152 B
TypeScript
Executable File

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