import Konva from "konva"; const title=function (width,height,title) { return new Konva.Text({ x: 0, y: 8, width: width, height: 20, lineHeight: 1, stroke: 'blue', strokeWidth: 2, text: title, align: 'center', fontSize: 32, }) } export default title