2019-08-03 15:03:33 +02:00
|
|
|
import { box } from './shared'
|
2019-05-25 19:12:31 +02:00
|
|
|
|
|
|
|
export default part => {
|
2019-08-03 15:03:33 +02:00
|
|
|
let { Point, snippets, Snippet } = part.shorthand()
|
2019-05-25 19:12:31 +02:00
|
|
|
|
2019-08-03 15:03:33 +02:00
|
|
|
snippets.button = new Snippet('button', new Point(30, 10))
|
|
|
|
snippets.buttonhole = new Snippet('buttonhole', new Point(70, 10))
|
2019-05-25 19:12:31 +02:00
|
|
|
|
2019-08-03 15:03:33 +02:00
|
|
|
return box(part, 100, 20)
|
|
|
|
}
|