mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-16 19:58:12 +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;
|