import { ParentSize } from '../..'; import type { HeatMapProps } from './model'; import ResponsiveHeatMap from './ResponsiveHeatMap'; const HeatMap = (props: HeatMapProps): JSX.Element => ( {({ width, height }) => ( {...props} height={height} width={width} /> )} ); export default HeatMap;