JSFiddle - React, Tailwind, and code Playground
by Flexmonster Pivot Table
HTML
<link rel="stylesheet" href="https://s3.amazonaws.com/flexmonster/2.3/demo.css">
<script src="https://cdn.flexmonster.com/flexmonster.js"></script>
<div id="pivot-container"></div>
JavaScript
let pivot = new Flexmonster({
container: "pivot-container",
componentFolder: "https://cdn.flexmonster.com/",
toolbar: true,
beforetoolbarcreated: customizeToolbar
});
function customizeToolbar(toolbar) {
toolbar.icons.fullscreen = '<img src="https://cdn3.iconfinder.com/data/icons/google-material-design-icons/48/ic_fullscreen_48px-512.png" style="padding:15px 15px 5px 15px;"/>'
toolbar.icons.minimize = '<img src="https://cdn0.iconfinder.com/data/icons/smartphone-glyph-1/48/smarthphone_mobile_interface_application_ui-01-512.png" style="padding:15px 15px 5px 15px;"/>'
}