import { TransformComponent as TC } from '../runtime'; import { BinXTransform } from '../spec'; import { Bin } from './bin'; export type BinXOptions = Omit; export const BinX: TC = (options = {}) => { const { thresholds } = options; return Bin({ ...options, thresholdsX: thresholds, groupChannels: ['color'], binChannels: ['x'], }); }; BinX.props = {};