UNPKG

interactive-tutorial

Version:
8 lines (7 loc) 318 B
export const createCloakingRectangle = ({ top, right, bottom, left }) => { const div = document.createElement("div"); div.style.position = "absolute"; div.style.inset = `${top}px ${right}px ${bottom}px ${left}px`; div.classList.add("interactive-tutorial-cloaking-rectangle"); return div; };