export function createRectangle(left, top, width, height) {
  return {left, top, width, height};
}