mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-15 14:00:35 +00:00
17 lines
390 B
JavaScript
17 lines
390 B
JavaScript
import React from 'react';
|
|
import './index.scss';
|
|
|
|
var Logo = function Logo(props) {
|
|
return /*#__PURE__*/React.createElement("div", {
|
|
className: "lowcode-plugin-logo"
|
|
}, /*#__PURE__*/React.createElement("a", {
|
|
className: "logo",
|
|
target: "blank",
|
|
href: props.href || '/',
|
|
style: {
|
|
backgroundImage: "url(" + props.logo + ")"
|
|
}
|
|
}));
|
|
};
|
|
|
|
export default Logo; |