/* eslint-disable radix */ export const textRender = ({ text, X, Y, fontSize, color, maxWidth, maxRowNum = 1, ctx }) => { ctx.font = '14px serif'; ctx.fillStyle = color; ctx.fillText(text, X, Y); };