import React from 'react'; import PropTypes from 'prop-types'; import ExportButton from '../export-button.jsx'; const ExportColumnHeader = ({ baseCSS, general, title, allowExcelExport, hasSecondDimension, styling }) => { const rowSpan = hasSecondDimension ? 2 : 1; const style = { ...baseCSS, cursor: 'default', fontSize: `${16 + styling.headerOptions.fontSizeAdjustment} px`, height: '80px', verticalAlign: 'middle', width: '230px' }; return (