gjerp_ui/src/views/zyjhzx/pwanfkui/comps/title.js

19 lines
296 B

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