2019-08-03 15:03:33 +02:00
|
|
|
import { box } from './shared'
|
2019-01-27 12:54:18 +01:00
|
|
|
|
2021-01-31 09:22:15 +01:00
|
|
|
export default (part) => {
|
2019-08-03 15:03:33 +02:00
|
|
|
let { Point, points, macro } = part.shorthand()
|
2019-01-27 12:54:18 +01:00
|
|
|
|
2019-08-03 15:03:33 +02:00
|
|
|
points.title = new Point(90, 45)
|
2019-01-27 12:54:18 +01:00
|
|
|
|
2019-08-03 15:03:33 +02:00
|
|
|
macro('title', {
|
2019-05-25 19:12:31 +02:00
|
|
|
at: points.title,
|
2019-01-27 12:54:18 +01:00
|
|
|
nr: 4,
|
2019-08-03 15:03:33 +02:00
|
|
|
title: 'sleeve',
|
2021-04-24 10:16:31 +02:00
|
|
|
prefix: 'test',
|
2019-08-03 15:03:33 +02:00
|
|
|
})
|
2019-01-27 12:54:18 +01:00
|
|
|
|
2019-08-03 15:03:33 +02:00
|
|
|
return box(part, 200, 70)
|
|
|
|
}
|