12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- const data: Record<string, { text: string; icon: string }> = {
- 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',
- },
- Image: {
- text: 'Image',
- icon: 'add-image',
- },
- };
- export default data;
|