Files
icehrm/web/node_modules/rc-tooltip/es/Content.js
2020-05-20 18:47:29 +02:00

14 lines
358 B
JavaScript

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;