react-matrix-viz
Version:
A react component for creating quick matrix/grid visualizations.
22 lines (19 loc) • 379 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
var cellStyle = exports.cellStyle = {
height: 20,
width: 20,
margin: 1,
backgroundColor: '#eee',
boxSizing: 'border-box',
cursor: 'pointer'
};
var columnStyle = exports.columnStyle = {
display: 'flex',
flexDirection: 'column'
};
var matrixStyle = exports.matrixStyle = {
display: 'flex'
};