legendContinuousBlock.js 405 B

123456
  1. import { LegendContinuous } from './legendContinuous';
  2. export const LegendContinuousBlock = (options) => {
  3. return (...args) => LegendContinuous(Object.assign({}, { block: true }, options))(...args);
  4. };
  5. LegendContinuousBlock.props = Object.assign(Object.assign({}, LegendContinuous.props), { defaultPosition: 'top', defaultOrientation: 'horizontal' });
  6. //# sourceMappingURL=legendContinuousBlock.js.map