import { jsx } from '../../jsx'; export default (props, context) => { const { coord, range, position, layout } = props; const { top, height } = coord; const { left, width } = layout; const [start, end] = range?.y || range?.x; const barTop = height * start; const barHeight = height * (end - start); return ( ); };