12 lines
344 B
JavaScript
12 lines
344 B
JavaScript
import { box } from './shared'
|
|
|
|
export default (part) => {
|
|
let { Point, points, Snippet, snippets } = part.shorthand()
|
|
|
|
points.A = new Point(50, 25).attr('data-text', 'Point A').attr('data-text-class', 'text-xl')
|
|
points.B = points.A.copy().attr('data-text', 'Point B')
|
|
|
|
snippets.x = new Snippet('notch', points.A)
|
|
|
|
return box(part)
|
|
}
|