data.ts 728 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. const data: Record<string, any> = {
  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. };
  47. export default data;