import { Band as BandScale } from '@antv/scale'; import { BandScale as BandScaleSpec } from '../spec'; import { ScaleComponent as SC } from '../runtime'; export type BandOptions = Omit; export const Band: SC = (options) => { return new BandScale(options); }; Band.props = {};