@alilc/lowcode-plugin-components-pane
Version:
10 lines • 321 B
JavaScript
import React from 'react';
import cls from 'classnames/bind';
import Svg from './icon.svg';
import style from './index.module.scss';
var cx = cls.bind(style);
export default function Icon() {
return /*#__PURE__*/React.createElement("div", {
className: cx('icon')
}, /*#__PURE__*/React.createElement(Svg, null));
}