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