legendContinuousBlockSize.js 462 B

1234567
  1. import { LegendContinuous } from './legendContinuous';
  2. import { LegendContinuousSize } from './legendContinuousSize';
  3. export const LegendContinuousBlockSize = (options) => {
  4. return LegendContinuousSize(Object.assign({}, { block: true }, options));
  5. };
  6. LegendContinuousBlockSize.props = Object.assign(Object.assign({}, LegendContinuous.props), { defaultPosition: 'top', defaultOrientation: 'horizontal' });
  7. //# sourceMappingURL=legendContinuousBlockSize.js.map