Latest updates from IceHrmPro
This commit is contained in:
14
web/node_modules/rc-tooltip/es/Content.js
generated
vendored
Normal file
14
web/node_modules/rc-tooltip/es/Content.js
generated
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
import React from 'react';
|
||||
|
||||
var Content = function Content(props) {
|
||||
var overlay = props.overlay,
|
||||
prefixCls = props.prefixCls,
|
||||
id = props.id;
|
||||
return React.createElement("div", {
|
||||
className: "".concat(prefixCls, "-inner"),
|
||||
id: id,
|
||||
role: "tooltip"
|
||||
}, typeof overlay === 'function' ? overlay() : overlay);
|
||||
};
|
||||
|
||||
export default Content;
|
||||
Reference in New Issue
Block a user