data.ts 1010 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. const data: Record<string, { text: string; icon: string }> = {
  2. Highlight: {
  3. text: 'Highlight',
  4. icon: 'highlight',
  5. },
  6. Underline: {
  7. text: 'Underline',
  8. icon: 'underline',
  9. },
  10. Squiggly: {
  11. text: 'Squiggly',
  12. icon: 'squiggly',
  13. },
  14. StrikeOut: {
  15. text: 'Strikeout',
  16. icon: 'strikeout',
  17. },
  18. Ink: {
  19. text: 'Freehand',
  20. icon: 'freehand',
  21. },
  22. FreeText: {
  23. text: 'Text box',
  24. icon: 'text',
  25. },
  26. Text: {
  27. text: 'Sticky note',
  28. icon: 'sticky-note',
  29. },
  30. Square: {
  31. text: 'Square',
  32. icon: 'square',
  33. },
  34. Circle: {
  35. text: 'Circle',
  36. icon: 'circle',
  37. },
  38. Line: {
  39. text: 'Line',
  40. icon: 'line',
  41. },
  42. Arrow: {
  43. text: 'Arrow line',
  44. icon: 'arrow',
  45. },
  46. textfield: {
  47. text: 'Textfield',
  48. icon: 'textfield',
  49. },
  50. checkbox: {
  51. text: 'Checkbox',
  52. icon: 'checkbox',
  53. },
  54. radio: {
  55. text: 'Radio Button',
  56. icon: 'radio-button',
  57. },
  58. Image: {
  59. text: 'Image',
  60. icon: 'add-image',
  61. },
  62. };
  63. export default data;