import { TransformComponent as TC } from '../runtime'; import { SelectYTransform } from '../spec'; import { Select } from './select'; export type SelectYOptions = Omit; /** * The selectY transform filter index by y channel. */ export const SelectY: TC = (options = {}) => { const { selector, ...rest } = options; return Select({ channel: 'y', selector, ...rest }); }; SelectY.props = {};