1
0
Fork 0
freesewing/packages/examples/src/plugin_logo.js
2021-12-27 16:30:56 +01:00

10 lines
268 B
JavaScript

import { box } from './shared'
export default (part) => {
let { points, Point, snippets, Snippet } = part.shorthand()
points.anchor = new Point(50, 25)
snippets.logo = new Snippet('logo', points.anchor).attr('data-scale', 0.666)
return box(part, 100, 35)
}