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) => {
|
2021-12-27 16:30:56 +01:00
|
|
|
let { points, Point, snippets, Snippet } = part.shorthand()
|
|
|
|
points.anchor = new Point(50, 25)
|
2019-01-27 12:54:18 +01:00
|
|
|
|
2021-12-27 16:30:56 +01:00
|
|
|
snippets.logo = new Snippet('logo', points.anchor).attr('data-scale', 0.666)
|
2019-01-27 12:54:18 +01:00
|
|
|
|
2021-12-27 16:30:56 +01:00
|
|
|
return box(part, 100, 35)
|
2019-08-03 15:03:33 +02:00
|
|
|
}
|