We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17ef194 commit 01a4437Copy full SHA for 01a4437
src/annotator/components/toolbar.js
@@ -133,6 +133,11 @@ export default function Toolbar({
133
icon={newAnnotationType === 'note' ? 'note' : 'annotate'}
134
onClick={createAnnotation}
135
/>
136
+ <ToolbarButton
137
+ label={'New Doodle'}
138
+ icon={'doodle'}
139
+ onClick={() => {alert("this would create a doodle!")}}
140
+ />
141
</div>
142
)}
143
src/annotator/icons.js
@@ -15,4 +15,5 @@ export default {
15
note: require('../images/icons/note.svg'),
16
pointer: require('../images/icons/pointer.svg'),
17
show: require('../images/icons/show.svg'),
18
+ doodle: require('../images/icons/doodle.svg')
19
};
src/images/icons/doodle.svg
0 commit comments