15 lines
184 B
JavaScript
15 lines
184 B
JavaScript
|
export default {
|
||
|
name: 'polygon',
|
||
|
buttons: [
|
||
|
{
|
||
|
title: 'Polygon Tool'
|
||
|
}
|
||
|
],
|
||
|
contextTools: [
|
||
|
{
|
||
|
title: 'Number of Sides',
|
||
|
label: 'sides'
|
||
|
}
|
||
|
]
|
||
|
};
|