1
0
Fork 0
freesewing/packages/examples/src/plugin_title.js
2021-04-24 10:16:31 +02:00

16 lines
275 B
JavaScript

import { box } from './shared'
export default (part) => {
let { Point, points, macro } = part.shorthand()
points.title = new Point(90, 45)
macro('title', {
at: points.title,
nr: 4,
title: 'sleeve',
prefix: 'test',
})
return box(part, 200, 70)
}