1
0
Fork 0
freesewing/packages/examples/src/plugin_title.js
2019-08-03 15:03:33 +02:00

16 lines
272 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)
}