getExtraFooter.js 295 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 import * as React from 'react'; export default function getExtraFooter(prefixCls, mode, renderExtraFooter) { if (!renderExtraFooter) { return null; } return /*#__PURE__*/React.createElement("div", { className: "".concat(prefixCls, "-footer-extra") }, renderExtraFooter(mode)); }