2023-04-21 03:48:37 +00:00
|
|
|
// Export hooks
|
|
|
|
export const notchesDefs = [
|
2023-04-20 19:14:10 +00:00
|
|
|
{
|
|
|
|
name: 'notch',
|
2023-05-04 19:19:52 +00:00
|
|
|
def: (scale) => `
|
|
|
|
<g id="notch" transform="scale(${scale})">
|
2023-09-15 08:43:57 +02:00
|
|
|
<circle cy="0" cx="0" r="1.4" class="fill-note"></circle>
|
|
|
|
<circle cy="0" cx="0" r="2.8" class="note"></circle>
|
2023-04-20 19:14:10 +00:00
|
|
|
</g>`,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'bnotch',
|
2023-05-04 19:19:52 +00:00
|
|
|
def: (scale) => `
|
|
|
|
<g id="bnotch" transform="scale(${scale})">
|
2023-09-14 16:54:32 +02:00
|
|
|
<path d="M -1.1 -1.1 L 1.1 1.1 M 1.1 -1.1 L -1.1 1.1" class="note"></path>
|
2023-09-15 08:43:57 +02:00
|
|
|
<circle cy="0" cx="0" r="2.8" class="note"></circle>
|
2023-04-20 19:14:10 +00:00
|
|
|
</g>`,
|
|
|
|
},
|
|
|
|
]
|