| 1234567891011 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.LegendContinuousBlockSize = void 0;
- const legendContinuous_1 = require("./legendContinuous");
- const legendContinuousSize_1 = require("./legendContinuousSize");
- const LegendContinuousBlockSize = (options) => {
- return (0, legendContinuousSize_1.LegendContinuousSize)(Object.assign({}, { block: true }, options));
- };
- exports.LegendContinuousBlockSize = LegendContinuousBlockSize;
- exports.LegendContinuousBlockSize.props = Object.assign(Object.assign({}, legendContinuous_1.LegendContinuous.props), { defaultPosition: 'top', defaultOrientation: 'horizontal' });
- //# sourceMappingURL=legendContinuousBlockSize.js.map
|