2019-05-25 19:12:31 +02:00
|
|
|
import { box } from "./shared";
|
2019-01-27 12:54:18 +01:00
|
|
|
|
2019-05-25 19:12:31 +02:00
|
|
|
export default part => {
|
|
|
|
let { Point, snippets, Snippet } = part.shorthand();
|
2019-01-27 12:54:18 +01:00
|
|
|
|
2019-05-25 19:12:31 +02:00
|
|
|
snippets.logo = new Snippet("logo", new Point(50, 30));
|
2019-01-27 12:54:18 +01:00
|
|
|
|
2019-05-25 19:12:31 +02:00
|
|
|
return box(part, 100, 40);
|
2019-01-27 12:54:18 +01:00
|
|
|
};
|