import type { Domain } from '@h5web/shared'; import styles from './Histogram.module.css'; const ARROW_SIZE = 10; interface Props { positions: Domain; height: number; } function HistogramIndicators(props: Props) { const { positions, height } = props; const [xMin, xMax] = positions; return ( ); } export default HistogramIndicators;