123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- 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',
- },
- textfield: {
- text: 'Textfield',
- icon: 'textfield',
- },
- checkbox: {
- text: 'Checkbox',
- icon: 'checkbox',
- },
- radio: {
- text: 'Radio Button',
- icon: 'radio-button',
- },
- };
- export default data;
|