linkmore-design
Version:
π πlmη»δ»ΆεΊγπ
12 lines β’ 444 B
JavaScript
import React from 'react';
import { prefix } from "../../constants";
var Custom = function Custom(props) {
var customRender = props.customRender;
if (!customRender) return null;
return /*#__PURE__*/React.createElement("div", {
className: "".concat(prefix, "_custom")
}, !!customRender && customRender(props), /*#__PURE__*/React.createElement("div", {
className: "".concat(prefix, "_custom_line")
}));
};
export default Custom;