123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- const data: Record<string, any> = {
- Highlight: {
- text: 'highlight',
- icon: 'highlight',
- },
- Underline: {
- text: 'underline',
- icon: 'underline',
- },
- Squiggly: {
- text: 'squiggly',
- icon: 'squiggly',
- },
- StrikeOut: {
- text: 'strikeout',
- icon: 'strikeout',
- },
- Ink: {
- text: 'freehand',
- icon: 'freehand',
- },
- FreeText: {
- text: 'text box',
- icon: 'text',
- },
- Text: {
- text: 'sticky note',
- icon: 'sticky-note',
- },
- Square: {
- text: 'square',
- icon: 'square',
- },
- Circle: {
- text: 'circle',
- icon: 'circle',
- },
- Line: {
- text: 'line',
- icon: 'line',
- },
- Arrow: {
- text: 'arrow line',
- icon: 'arrow',
- },
- };
- export default data;
|