mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-03-02 23:37:04 +00:00
9 lines
142 B
TypeScript
Executable File
9 lines
142 B
TypeScript
Executable File
import warning from '../_util/warning';
|
|
|
|
const Icon = () => {
|
|
warning(false, 'Icon', 'Empty Icon');
|
|
return null;
|
|
};
|
|
|
|
export default Icon;
|