(name: string, visible = true)
| 24 | } |
| 25 | |
| 26 | function vector(name: string, visible = true): VectorNode { |
| 27 | return { type: 'VECTOR', name, visible, fills: [{ color: '#000' }] } |
| 28 | } |
| 29 | |
| 30 | function group(name: string, children: DesignNode[], visible = true): GroupNode { |
| 31 | return { type: 'GROUP', name, visible, children } |