@amboss/design-system 1.17.6 → 1.18.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (78) hide show
  1. package/build/cjs/build-tokens/assets/icons.json.js +1 -1
  2. package/build/cjs/build-tokens/assets/icons16.json.js +1 -1
  3. package/build/cjs/build-tokens/visualConfig.js +12 -27
  4. package/build/cjs/src/components/Badge/Badge.js +2 -2
  5. package/build/cjs/src/components/Button/Button.js +6 -6
  6. package/build/cjs/src/components/DropdownMenu/MenuItem.js +2 -2
  7. package/build/cjs/src/components/Form/Input/Input.js +5 -5
  8. package/build/cjs/src/components/Form/PasswordInput/PasswordInput.js +5 -5
  9. package/build/cjs/src/components/Form/RadioButton/RadioButton.js +4 -4
  10. package/build/cjs/src/components/Form/Select/Select.js +6 -6
  11. package/build/cjs/src/components/Form/Textarea/Textarea.js +3 -3
  12. package/build/cjs/src/components/Form/ToggleButton/ToggleButton.js +5 -5
  13. package/build/cjs/src/components/PictogramButton/PictogramButton.js +2 -2
  14. package/build/cjs/src/components/RoundButton/RoundButton.js +2 -2
  15. package/build/cjs/src/components/Tabs/Tabs.js +3 -3
  16. package/build/cjs/src/components/Tag/Tag.js +4 -4
  17. package/build/cjs/src/components/Toggletip/Toggletip.js +3 -2
  18. package/build/cjs/src/components/Tooltip/BaseTooltip.js +163 -0
  19. package/build/cjs/src/components/Tooltip/Tooltip.js +8 -144
  20. package/build/cjs/src/components/Typography/Header/Header.js +12 -12
  21. package/build/cjs/src/components/Typography/Text/Text.js +2 -2
  22. package/build/cjs/src/components/UserHighlightTooltip/UserHighlightTooltip.js +15 -0
  23. package/build/cjs/src/index.js +2 -0
  24. package/build/esm/build-tokens/_sizes.json +76 -126
  25. package/build/esm/build-tokens/assets/icons.json +1 -0
  26. package/build/esm/build-tokens/assets/icons.json.js +1 -1
  27. package/build/esm/build-tokens/assets/icons16.json +1 -0
  28. package/build/esm/build-tokens/assets/icons16.json.js +1 -1
  29. package/build/esm/build-tokens/visualConfig.d.ts +12 -27
  30. package/build/esm/build-tokens/visualConfig.js +12 -27
  31. package/build/esm/build-tokens/visualConfig.js.map +1 -1
  32. package/build/esm/src/components/Badge/Badge.js +2 -2
  33. package/build/esm/src/components/Badge/Badge.js.map +1 -1
  34. package/build/esm/src/components/Button/Button.js +6 -6
  35. package/build/esm/src/components/Button/Button.js.map +1 -1
  36. package/build/esm/src/components/DropdownMenu/MenuItem.js +2 -2
  37. package/build/esm/src/components/DropdownMenu/MenuItem.js.map +1 -1
  38. package/build/esm/src/components/Form/Input/Input.js +5 -5
  39. package/build/esm/src/components/Form/Input/Input.js.map +1 -1
  40. package/build/esm/src/components/Form/PasswordInput/PasswordInput.js +5 -5
  41. package/build/esm/src/components/Form/PasswordInput/PasswordInput.js.map +1 -1
  42. package/build/esm/src/components/Form/RadioButton/RadioButton.js +4 -4
  43. package/build/esm/src/components/Form/RadioButton/RadioButton.js.map +1 -1
  44. package/build/esm/src/components/Form/Select/Select.js +6 -6
  45. package/build/esm/src/components/Form/Select/Select.js.map +1 -1
  46. package/build/esm/src/components/Form/Textarea/Textarea.js +3 -3
  47. package/build/esm/src/components/Form/Textarea/Textarea.js.map +1 -1
  48. package/build/esm/src/components/Form/ToggleButton/ToggleButton.js +5 -5
  49. package/build/esm/src/components/Form/ToggleButton/ToggleButton.js.map +1 -1
  50. package/build/esm/src/components/PictogramButton/PictogramButton.js +2 -2
  51. package/build/esm/src/components/PictogramButton/PictogramButton.js.map +1 -1
  52. package/build/esm/src/components/RoundButton/RoundButton.js +2 -2
  53. package/build/esm/src/components/RoundButton/RoundButton.js.map +1 -1
  54. package/build/esm/src/components/Tabs/Tabs.js +3 -3
  55. package/build/esm/src/components/Tabs/Tabs.js.map +1 -1
  56. package/build/esm/src/components/Tag/Tag.js +4 -4
  57. package/build/esm/src/components/Tag/Tag.js.map +1 -1
  58. package/build/esm/src/components/Toggletip/Toggletip.d.ts +5 -10
  59. package/build/esm/src/components/Toggletip/Toggletip.js +3 -2
  60. package/build/esm/src/components/Toggletip/Toggletip.js.map +1 -1
  61. package/build/esm/src/components/Tooltip/BaseTooltip.d.ts +11 -0
  62. package/build/esm/src/components/Tooltip/BaseTooltip.js +158 -0
  63. package/build/esm/src/components/Tooltip/BaseTooltip.js.map +1 -0
  64. package/build/esm/src/components/Tooltip/Tooltip.d.ts +6 -16
  65. package/build/esm/src/components/Tooltip/Tooltip.js +8 -145
  66. package/build/esm/src/components/Tooltip/Tooltip.js.map +1 -1
  67. package/build/esm/src/components/Tooltip/types.d.ts +8 -0
  68. package/build/esm/src/components/Typography/Header/Header.js +12 -12
  69. package/build/esm/src/components/Typography/Header/Header.js.map +1 -1
  70. package/build/esm/src/components/Typography/Text/Text.js +2 -2
  71. package/build/esm/src/components/Typography/Text/Text.js.map +1 -1
  72. package/build/esm/src/components/UserHighlightTooltip/UserHighlightTooltip.d.ts +4 -0
  73. package/build/esm/src/components/UserHighlightTooltip/UserHighlightTooltip.js +10 -0
  74. package/build/esm/src/components/UserHighlightTooltip/UserHighlightTooltip.js.map +1 -0
  75. package/build/esm/src/index.d.ts +1 -0
  76. package/build/esm/src/index.js +1 -0
  77. package/build/esm/src/index.js.map +1 -1
  78. package/package.json +1 -1
@@ -2,7 +2,7 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- var apple="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path fill=\"currentColor\" fill-rule=\"evenodd\"\n d=\"M16.749 0c.214 1.458-.379 2.886-1.162 3.896-.837 1.084-2.28 1.922-3.679 1.879-.255-1.396.398-2.834 1.194-3.8C13.974.906 15.469.088 16.749 0zm4.201 20.518c.721-1.105.99-1.662 1.55-2.91-4.07-1.547-4.723-7.335-.694-9.556-1.23-1.54-2.956-2.434-4.586-2.434-1.174 0-1.979.306-2.71.585-.61.232-1.169.445-1.849.445-.734 0-1.385-.233-2.066-.477-.748-.269-1.533-.55-2.508-.55-1.83 0-3.776 1.117-5.01 3.028C1.34 11.34 1.636 16.4 4.45 20.71c1.006 1.542 2.35 3.275 4.107 3.29.73.008 1.215-.21 1.74-.445.601-.27 1.255-.563 2.386-.569 1.138-.007 1.78.29 2.374.564.511.236.986.454 1.71.447 1.758-.014 3.176-1.935 4.182-3.477z\"\n clip-rule=\"evenodd\" />\n</svg>";var article="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\"\n stroke-linejoin=\"round\" stroke-width=\"2\" viewBox=\"0 0 24 24\">\n <path d=\"M4 2h16v20H4zm12 4H8m6 4H8\" />\n <path d=\"M8 14h8v4H8z\" />\n</svg>";var auditor="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\"\n stroke-linejoin=\"round\" stroke-width=\"2\" viewBox=\"0 0 24 24\">\n <circle cx=\"6\" cy=\"7\" r=\"4\" />\n <circle cx=\"18\" cy=\"7\" r=\"4\" />\n <path\n d=\"M10 7h4m9 8.3c-.7.9-1.8 1.6-3.1 1.6-1.4 0-2.7-.7-3.3-1.8h0c-.4-.7-1.2-1.3-2.1-1.3-1.3 0-2.4 1-2.4 2.2 0 .3.1.6.2.9h0c.7 2 2.8 3.5 5.3 3.5 2.9 0 5.4-2.3 5.4-5.1h0zm-22 0c.7.9 1.8 1.6 3.1 1.6 1.4 0 2.7-.7 3.3-1.8h0c.4-.7 1.2-1.3 2.1-1.3 1.3 0 2.4 1 2.4 2.2 0 .3-.1.6-.2.9h0c-.7 2-2.8 3.5-5.3 3.5-2.9 0-5.4-2.3-5.4-5.1h0z\" />\n</svg>";var award="<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 15C15.866 15 19 11.866 19 8C19 4.13401 15.866 1 12 1C8.13401 1 5 4.13401 5 8C5 11.866 8.13401 15 12 15Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n<path d=\"M8.21 13.89L7 23L12 20L17 23L15.79 13.88\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n";var bell="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-bell\"><path d=\"M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9\"></path><path d=\"M13.73 21a2 2 0 0 1-3.46 0\"></path></svg>";var book="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-book\"><path d=\"M4 19.5A2.5 2.5 0 0 1 6.5 17H20\"></path><path d=\"M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z\"></path></svg>";var bookmark="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M19 21l-7-5-7 5V5a2 2 0 012-2h10a2 2 0 012 2v16z\" clip-rule=\"evenodd\" />\n</svg>";var box="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-box\"><path d=\"M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z\"></path><polyline points=\"3.27 6.96 12 12.01 20.73 6.96\"></polyline><line x1=\"12\" y1=\"22.08\" x2=\"12\" y2=\"12\"></line></svg>";var bubble="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\"\n stroke-linejoin=\"round\" stroke-width=\"2\" viewBox=\"0 0 24 24\">\n <path d=\"M20 3H6c-1.1 0-2 .9-2 2v5l-3 2 3 2v5c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z\" />\n</svg>";var bulb="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\"\n stroke-linejoin=\"round\" stroke-width=\"2\" viewBox=\"0 0 24 24\">\n <path\n d=\"M14 10h-4m2 0v7.9m4 0v-4.1c1.6-1.2 2.6-3.1 2.6-5.2 0-3.7-3-6.6-6.6-6.6S5.4 4.9 5.4 8.6c0 2.1 1 4 2.6 5.2v4.1h8zm-8 0l2 4.1h4l2-4.1\" />\n</svg>";var calculator="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\"\n stroke-linejoin=\"round\" stroke-width=\"2\" viewBox=\"0 0 24 24\">\n <path\n d=\"M4 7h16M7.9 10.5h0m4 0h0m4 0h0m-8 4h0m4 0h0m4 0h0m-7.9 4h3.9m4 0h0M18 22H6c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h12c1.1 0 2 .9 2 2v16c0 1.1-.9 2-2 2z\" />\n</svg>";var charts="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path stroke=\"currentColor\" stroke-linecap=\"square\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M3 10.5s1.366.011 1.5 0a.75.75 0 00.621-.443l1.65-3.875a.75.75 0 011.4.078l3.077 6.717a.75.75 0 001.449-.072l3.095-9.307a.75.75 0 011.457-.052L18.75 9.75c.045.157 0 .75 1.5.75H21\" />\n <path fill=\"currentColor\"\n d=\"M4 19.5a1 1 0 10-2 0h2zm-2 0v3h2v-3H2zm11 0a1 1 0 10-2 0h2zm-2 0v3h2v-3h-2zm11 0a1 1 0 10-2 0h2zm-2 0v3h2v-3h-2zm-11.5-3a1 1 0 10-2 0h2zm-2 0v6h2v-6h-2zm11 0a1 1 0 10-2 0h2zm-2 0v6h2v-6h-2z\" />\n</svg>";var check="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-check\"><polyline points=\"20 6 9 17 4 12\"></polyline></svg>";var circle="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-circle\"><circle cx=\"12\" cy=\"12\" r=\"10\"></circle></svg>";var clipboard="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-clipboard\"><path d=\"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2\"></path><rect x=\"8\" y=\"2\" width=\"8\" height=\"4\" rx=\"1\" ry=\"1\"></rect></svg>";var coffee="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-coffee\"><path d=\"M18 8h1a4 4 0 0 1 0 8h-1\"></path><path d=\"M2 8h16v9a4 4 0 0 1-4 4H6a4 4 0 0 1-4-4V8z\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"10\" y1=\"1\" x2=\"10\" y2=\"4\"></line><line x1=\"14\" y1=\"1\" x2=\"14\" y2=\"4\"></line></svg>";var collapse="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\"\n stroke-linejoin=\"round\" stroke-width=\"2\" viewBox=\"0 0 24 24\">\n <path d=\"M15 20.3L12 18l-3 2.3m3 1.7v-4M9 3.7L12 6l3-2.3M12 2v4m-7 4h14M5 14h14\" />\n</svg>";var compass="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-compass\"><circle cx=\"12\" cy=\"12\" r=\"10\"></circle><polygon points=\"16.24 7.76 14.12 14.12 7.76 16.24 9.88 9.88 16.24 7.76\"></polygon></svg>";var copy="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-copy\"><rect x=\"9\" y=\"9\" width=\"13\" height=\"13\" rx=\"2\" ry=\"2\"></rect><path d=\"M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1\"></path></svg>";var download="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-download\"><path d=\"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4\"></path><polyline points=\"7 10 12 15 17 10\"></polyline><line x1=\"12\" y1=\"15\" x2=\"12\" y2=\"3\"></line></svg>";var education="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M12 2L1 8l11 6 11-6-11-6z\"\n clip-rule=\"evenodd\" />\n <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M5 11v7l7 4.5 7-4.5v-7\" />\n <path stroke-linecap=\"round\" stroke-width=\"2\" d=\"M23 8v8\" />\n</svg>";var expand="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\"\n stroke-linejoin=\"round\" stroke-width=\"2\" viewBox=\"0 0 24 24\">\n <path d=\"M9 19.7l3 2.3 3-2.3M12 18v4m3-17.7L12 2 9 4.3M12 6V2m-7 8h14M5 14h14\" />\n</svg>";var eye="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-eye\"><path d=\"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z\"></path><circle cx=\"12\" cy=\"12\" r=\"3\"></circle></svg>";var facebook="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path fill=\"#1877F2\"\n d=\"M24 12c0-6.627-5.373-12-12-12S0 5.373 0 12c0 5.99 4.388 10.954 10.125 11.854V15.47H7.078V12h3.047V9.356c0-3.007 1.792-4.668 4.533-4.668 1.312 0 2.686.234 2.686.234v2.953H15.83c-1.491 0-1.956.925-1.956 1.875V12h3.328l-.532 3.469h-2.796v8.385C19.612 22.954 24 17.99 24 12z\" />\n <path fill=\"#fff\"\n d=\"M16.671 15.469L17.203 12h-3.328V9.75c0-.949.465-1.875 1.956-1.875h1.513V4.922s-1.374-.234-2.686-.234c-2.741 0-4.533 1.66-4.533 4.668V12H7.078v3.469h3.047v8.385a12.13 12.13 0 003.75 0V15.47h2.796z\" />\n</svg>";var figma="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\"><path fill=\"#1ABCFE\" d=\"M12 12a4 4 0 1 1 8 0 4 4 0 0 1-8 0Z\"/><path fill=\"#0ACF83\" d=\"M4 20a4 4 0 0 1 4-4h4v4a4 4 0 1 1-8 0Z\"/><path fill=\"#FF7262\" d=\"M12 0v8h4a4 4 0 1 0 0-8h-4Z\"/><path fill=\"#F24E1E\" d=\"M4 4a4 4 0 0 0 4 4h4V0H8a4 4 0 0 0-4 4Z\"/><path fill=\"#A259FF\" d=\"M4 12a4 4 0 0 0 4 4h4V8H8a4 4 0 0 0-4 4Z\"/></svg>";var film="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M2 4.18A2.18 2.18 0 014.18 2h15.64A2.18 2.18 0 0122 4.18v15.64A2.18 2.18 0 0119.82 22H4.18A2.18 2.18 0 012 19.82V4.18z\"\n clip-rule=\"evenodd\" />\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M7 2v20M17 2v20M2 12h20M2 7h5M2 17h5m10 0h5M17 7h5\" />\n</svg>";var filter="<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.09288 2.57912C1.25674 2.22596 1.61067 2 2 2H22C22.3893 2 22.7433 2.22596 22.9071 2.57912C23.071 2.93229 23.015 3.34845 22.7636 3.64573L15 12.8261V21C15 21.3466 14.8205 21.6684 14.5257 21.8507C14.2309 22.0329 13.8628 22.0494 13.5528 21.8944L9.55278 19.8944C9.214 19.725 9 19.3788 9 19V12.8261L1.23643 3.64573C0.985031 3.34845 0.929022 2.93229 1.09288 2.57912ZM4.1553 4L10.7636 11.8143C10.9162 11.9948 11 12.2236 11 12.46V18.382L13 19.382V12.46C13 12.2236 13.0838 11.9948 13.2364 11.8143L19.8447 4H4.1553Z\" fill=\"currentColor\"/>\n</svg>\n";var flag="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-flag\"><path d=\"M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1z\"></path><line x1=\"4\" y1=\"22\" x2=\"4\" y2=\"15\"></line></svg>";var flask="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\"\n stroke-linejoin=\"round\" stroke-width=\"2\" viewBox=\"0 0 24 24\">\n <path d=\"M4.4 21h15.2c1.1 0 1.8-1.2 1.3-2.2L14.3 7.3V3H9.7v4.3L3.1 18.8c-.5 1 .2 2.2 1.3 2.2zM8.5 3h7M5 16h14\" />\n</svg>";var flowchart="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M2 5a1 1 0 011-1h3a1 1 0 011 1v4a1 1 0 01-1 1H3a1 1 0 01-1-1V5zm15 0a1 1 0 011-1h3a1 1 0 011 1v4a1 1 0 01-1 1h-3a1 1 0 01-1-1V5zm0 10a1 1 0 011-1h3a1 1 0 011 1v4a1 1 0 01-1 1h-3a1 1 0 01-1-1v-4z\"\n clip-rule=\"evenodd\" />\n <path stroke-width=\"2\" d=\"M17 7h-5M7 7h5m5 11h-3a2 2 0 01-2-2V7\" />\n</svg>";var folder="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path fill=\"currentColor\"\n d=\"M3.6 8a.58.58 0 00-.6.6v11.2c0 .348.252.6.6.6h12.8a.58.58 0 00.6-.6V11a.58.58 0 00-.6-.6H9.2c-.334 0-.646-.168-.832-.446L7.065 8H3.6zm12.8 14.4H3.6A2.572 2.572 0 011 19.8V8.6C1 7.142 2.142 6 3.6 6h4c.334 0 .646.167.832.444L9.735 8.4H16.4c1.458 0 2.6 1.143 2.6 2.6v8.8c0 1.459-1.142 2.6-2.6 2.6zM22 21a1 1 0 01-1-1V3H9v1a1 1 0 01-2 0V2a1 1 0 011-1h14a1 1 0 011 1v18a1 1 0 01-1 1zM18 7h-6a1 1 0 010-2h6a1 1 0 110 2z\" />\n</svg>";var gift="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M20.8 12v11H3.2V12M23 6.5H1V12h22V6.5zM12 23V6.5M12 6.5H7.05a2.75 2.75 0 110-5.5C10.9 1 12 6.5 12 6.5zM12 6.5h4.95a2.75 2.75 0 000-5.5C13.1 1 12 6.5 12 6.5z\" />\n</svg>";var grid="\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\"><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M2 3a1 1 0 0 1 1-1h7a1 1 0 0 1 1 1v7a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V3Zm2 1v5h5V4H4ZM13 3a1 1 0 0 1 1-1h7a1 1 0 0 1 1 1v7a1 1 0 0 1-1 1h-7a1 1 0 0 1-1-1V3Zm2 1v5h5V4h-5ZM13 14a1 1 0 0 1 1-1h7a1 1 0 0 1 1 1v7a1 1 0 0 1-1 1h-7a1 1 0 0 1-1-1v-7Zm2 1v5h5v-5h-5ZM2 14a1 1 0 0 1 1-1h7a1 1 0 0 1 1 1v7a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1v-7Zm2 1v5h5v-5H4Z\" clip-rule=\"evenodd\"/></svg>";var google="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path fill=\"#EA4335\"\n d=\"M12 4.64c2.253 0 3.773.973 4.64 1.787l3.387-3.307C17.947 1.187 15.24 0 12 0 7.307 0 3.253 2.693 1.28 6.613l3.88 3.014C6.133 6.733 8.827 4.64 12 4.64z\" />\n <path fill=\"#4285F4\"\n d=\"M23.52 12.267c0-.987-.08-1.707-.253-2.454H12v4.454h6.613c-.133 1.106-.853 2.773-2.453 3.893l3.787 2.933C22.213 19 23.52 15.92 23.52 12.267z\" />\n <path fill=\"#FBBC05\"\n d=\"M5.173 14.373a7.387 7.387 0 01-.4-2.373c0-.827.147-1.627.387-2.373L1.28 6.613A12.01 12.01 0 000 12c0 1.933.467 3.76 1.28 5.387l3.893-3.014z\" />\n <path fill=\"#34A853\"\n d=\"M12 24c3.24 0 5.96-1.067 7.947-2.907L16.16 18.16c-1.013.707-2.373 1.2-4.16 1.2-3.173 0-5.867-2.093-6.827-4.987l-3.88 3.014C3.267 21.307 7.307 24 12 24z\" />\n</svg>";var hash="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-hash\"><line x1=\"4\" y1=\"9\" x2=\"20\" y2=\"9\"></line><line x1=\"4\" y1=\"15\" x2=\"20\" y2=\"15\"></line><line x1=\"10\" y1=\"3\" x2=\"8\" y2=\"21\"></line><line x1=\"16\" y1=\"3\" x2=\"14\" y2=\"21\"></line></svg>";var headphones="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M3 18v-6a9 9 0 0118 0v6\" />\n <path fill=\"currentColor\"\n d=\"M21 14h1a1 1 0 00-1-1v1zM3 14v-1a1 1 0 00-1 1h1zm17 5a1 1 0 01-1 1v2a3 3 0 003-3h-2zm-1 1h-1v2h1v-2zm-1 0a1 1 0 01-1-1h-2a3 3 0 003 3v-2zm-1-1v-3h-2v3h2zm0-3a1 1 0 011-1v-2a3 3 0 00-3 3h2zm1-1h3v-2h-3v2zm2-1v5h2v-5h-2zM2 19a3 3 0 003 3v-2a1 1 0 01-1-1H2zm3 3h1v-2H5v2zm1 0a3 3 0 003-3H7a1 1 0 01-1 1v2zm3-3v-3H7v3h2zm0-3a3 3 0 00-3-3v2a1 1 0 011 1h2zm-3-3H3v2h3v-2zm-4 1v5h2v-5H2z\" />\n</svg>";var home="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-home\"><path d=\"M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z\"></path><polyline points=\"9 22 9 12 15 12 15 22\"></polyline></svg>";var illustration="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M3 5a2 2 0 012-2h14a2 2 0 012 2v14a2 2 0 01-2 2H5a2 2 0 01-2-2V5z\" clip-rule=\"evenodd\" />\n <path fill=\"currentColor\" d=\"M15 18a3 3 0 100-6 3 3 0 000 6z\" />\n <path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M13.38 10.8L10.5 6 6 13.5h4.756a4.514 4.514 0 012.624-2.7z\"\n clip-rule=\"evenodd\" />\n</svg>";var image="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-image\"><rect x=\"3\" y=\"3\" width=\"18\" height=\"18\" rx=\"2\" ry=\"2\"></rect><circle cx=\"8.5\" cy=\"8.5\" r=\"1.5\"></circle><polyline points=\"21 15 16 10 5 21\"></polyline></svg>";var info="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-info\"><circle cx=\"12\" cy=\"12\" r=\"10\"></circle><line x1=\"12\" y1=\"16\" x2=\"12\" y2=\"12\"></line><line x1=\"12\" y1=\"8\" x2=\"12.01\" y2=\"8\"></line></svg>";var institution="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M9.5 11.5h5\" />\n <path stroke=\"currentColor\" stroke-width=\"2\"\n d=\"M17.75 9.582V19.75a1 1 0 01-1 1h-9.5a1 1 0 01-1-1V9.582a1 1 0 01.42-.815l4.75-3.378a1 1 0 011.16 0l4.75 3.378a1 1 0 01.42.815z\" />\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M13.875 21v-5.25h-3.75V21\" />\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\"\n d=\"M4.8 12H4a1 1 0 00-1 1v7a1 1 0 001 1h16a1 1 0 001-1v-7a1 1 0 00-1-1h-.8m-7.005-7.126V2m.305 1.5L15 3\" />\n</svg>";var key="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-key\"><path d=\"M21 2l-2 2m-7.61 7.61a5.5 5.5 0 1 1-7.778 7.778 5.5 5.5 0 0 1 7.777-7.777zm0 0L15.5 7.5m0 0l3 3L22 7l-3-3m-3.5 3.5L19 4\"></path></svg>";var layers="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-layers\"><polygon points=\"12 2 2 7 12 12 22 7 12 2\"></polygon><polyline points=\"2 17 12 22 22 17\"></polyline><polyline points=\"2 12 12 17 22 12\"></polyline></svg>";var link="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-link\"><path d=\"M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71\"></path><path d=\"M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71\"></path></svg>";var list="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-list\"><line x1=\"8\" y1=\"6\" x2=\"21\" y2=\"6\"></line><line x1=\"8\" y1=\"12\" x2=\"21\" y2=\"12\"></line><line x1=\"8\" y1=\"18\" x2=\"21\" y2=\"18\"></line><line x1=\"3\" y1=\"6\" x2=\"3.01\" y2=\"6\"></line><line x1=\"3\" y1=\"12\" x2=\"3.01\" y2=\"12\"></line><line x1=\"3\" y1=\"18\" x2=\"3.01\" y2=\"18\"></line></svg>";var loader="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-loader\"><line x1=\"12\" y1=\"2\" x2=\"12\" y2=\"6\"></line><line x1=\"12\" y1=\"18\" x2=\"12\" y2=\"22\"></line><line x1=\"4.93\" y1=\"4.93\" x2=\"7.76\" y2=\"7.76\"></line><line x1=\"16.24\" y1=\"16.24\" x2=\"19.07\" y2=\"19.07\"></line><line x1=\"2\" y1=\"12\" x2=\"6\" y2=\"12\"></line><line x1=\"18\" y1=\"12\" x2=\"22\" y2=\"12\"></line><line x1=\"4.93\" y1=\"19.07\" x2=\"7.76\" y2=\"16.24\"></line><line x1=\"16.24\" y1=\"7.76\" x2=\"19.07\" y2=\"4.93\"></line></svg>";var lock="<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 13C3 11.8954 3.89543 11 5 11H19C20.1046 11 21 11.8954 21 13V20C21 21.1046 20.1046 22 19 22H5C3.89543 22 3 21.1046 3 20V13Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 3C9.79086 3 8 4.79086 8 7V11C8 11.5523 7.55228 12 7 12C6.44772 12 6 11.5523 6 11V7C6 3.68629 8.68629 1 12 1C15.3137 1 18 3.68629 18 7V11C18 11.5523 17.5523 12 17 12C16.4477 12 16 11.5523 16 11V7C16 4.79086 14.2091 3 12 3Z\" fill=\"currentColor\"/>\n</svg>\n";var mail="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-mail\"><path d=\"M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z\"></path><polyline points=\"22,6 12,13 2,6\"></polyline></svg>";var maximize="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-maximize\"><path d=\"M8 3H5a2 2 0 0 0-2 2v3m18 0V5a2 2 0 0 0-2-2h-3m0 18h3a2 2 0 0 0 2-2v-3M3 16v3a2 2 0 0 0 2 2h3\"></path></svg>";var meditricks="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path fill=\"currentColor\"\n d=\"M5.784 18.226l1.926 1.541 3.484-4.758c.188-.257.525-.39.806-.409a1 1 0 01.802.402l3.482 4.67 1.941-1.553-3.33-4.527a1.002 1.002 0 01.475-1.536l5.35-1.868-.819-2.295-5.45 2.043A.997.997 0 0113.101 9V3h-2.3v6a.998.998 0 01-1.357.934L4.098 7.897l-.82 2.299 5.461 1.963a1.002 1.002 0 01.46 1.544l-3.415 4.523zM7.9 22.2c-.225 0-.446-.077-.624-.219l-3.5-2.8a1 1 0 01-.174-1.384l3.182-4.216-5.122-1.84a1.001 1.001 0 01-.604-1.278l1.5-4.2c.091-.253.28-.459.524-.572.244-.111.523-.121.774-.026L8.8 7.549V2a1 1 0 011-1h4.3a1 1 0 011 1v5.557l5.05-1.894a.999.999 0 011.292.6l1.5 4.2a.999.999 0 01-.612 1.281l-5.022 1.753 3.098 4.209a1.001 1.001 0 01-.18 1.374l-3.5 2.801a1.002 1.002 0 01-1.427-.183l-3.29-4.415-3.302 4.507a1 1 0 01-.807.41z\" />\n</svg>";var menu="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-menu\"><line x1=\"3\" y1=\"12\" x2=\"21\" y2=\"12\"></line><line x1=\"3\" y1=\"6\" x2=\"21\" y2=\"6\"></line><line x1=\"3\" y1=\"18\" x2=\"21\" y2=\"18\"></line></svg>";var minus="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-minus\"><line x1=\"5\" y1=\"12\" x2=\"19\" y2=\"12\"></line></svg>";var percent="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-percent\"><line x1=\"19\" y1=\"5\" x2=\"5\" y2=\"19\"></line><circle cx=\"6.5\" cy=\"6.5\" r=\"2.5\"></circle><circle cx=\"17.5\" cy=\"17.5\" r=\"2.5\"></circle></svg>";var pill="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M4.222 12.707a5 5 0 007.071 7.071l4.243-4.242-7.071-7.072-4.243 4.243z\" />\n <path fill=\"currentColor\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M12.707 4.222L8.465 8.464l7.07 7.072 4.244-4.243a5 5 0 10-7.072-7.071v0z\" />\n</svg>";var plus="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-plus\"><line x1=\"12\" y1=\"5\" x2=\"12\" y2=\"19\"></line><line x1=\"5\" y1=\"12\" x2=\"19\" y2=\"12\"></line></svg>";var quiz="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"22\" height=\"22\" fill=\"none\" viewBox=\"0 0 22 22\">\n <path fill=\"currentColor\" fill-rule=\"evenodd\"\n d=\"M6.8 12.1a1 1 0 110 2C3.05 14.1 0 11.005 0 7.2 0 3.387 2.987.4 6.8.4c3.75 0 6.8 3.05 6.8 6.8a1 1 0 11-2 0c0-2.646-2.154-4.8-4.8-4.8C4.109 2.4 2 4.509 2 7.2c0 2.748 2.109 4.9 4.8 4.9zm-1-7.4a1 1 0 012 0v2.085l1.007 1.008a.999.999 0 11-1.414 1.414l-1.3-1.3A.997.997 0 015.8 7.2V4.7zm7.3 12.486L10.914 15 17.4 8.514l2.185 2.186-6.486 6.486zM10.686 19.6H8.5v-2.185l1-1 2.186 2.185-1 1zm11.02-9.607l-3.598-3.6a1.003 1.003 0 00-1.414 0l-9.901 9.9A1.003 1.003 0 006.5 17v3.6a1 1 0 001 1h3.6a1 1 0 00.708-.293l9.899-9.9a.999.999 0 000-1.414z\"\n clip-rule=\"evenodd\" />\n</svg>";var reset="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-rotate-ccw\"><polyline points=\"1 4 1 10 7 10\"></polyline><path d=\"M3.51 15a9 9 0 1 0 2.13-9.36L1 10\"></path></svg>";var search="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-search\"><circle cx=\"11\" cy=\"11\" r=\"8\"></circle><line x1=\"21\" y1=\"21\" x2=\"16.65\" y2=\"16.65\"></line></svg>";var settings="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-settings\"><circle cx=\"12\" cy=\"12\" r=\"3\"></circle><path d=\"M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z\"></path></svg>";var share="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-share\"><path d=\"M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8\"></path><polyline points=\"16 6 12 2 8 6\"></polyline><line x1=\"12\" y1=\"2\" x2=\"12\" y2=\"15\"></line></svg>";var sliders="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-sliders\"><line x1=\"4\" y1=\"21\" x2=\"4\" y2=\"14\"></line><line x1=\"4\" y1=\"10\" x2=\"4\" y2=\"3\"></line><line x1=\"12\" y1=\"21\" x2=\"12\" y2=\"12\"></line><line x1=\"12\" y1=\"8\" x2=\"12\" y2=\"3\"></line><line x1=\"20\" y1=\"21\" x2=\"20\" y2=\"16\"></line><line x1=\"20\" y1=\"12\" x2=\"20\" y2=\"3\"></line><line x1=\"1\" y1=\"14\" x2=\"7\" y2=\"14\"></line><line x1=\"9\" y1=\"8\" x2=\"15\" y2=\"8\"></line><line x1=\"17\" y1=\"16\" x2=\"23\" y2=\"16\"></line></svg>";var smartzoom="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path fill=\"currentColor\"\n d=\"M7.593 15.164l-1.7-1a1 1 0 011.013-1.724l1.701.999a1.002 1.002 0 01-1.014 1.725zm7.288-8.6C17.989 7.917 20 10.926 20 14.401c0 4.676-3.504 8.372-8.151 8.6H5a1 1 0 110-1.999h6.8c3.514-.173 6.2-3.01 6.2-6.6 0-2.997-1.954-5.543-4.862-6.336a1 1 0 01-.598-1.475l1.076-1.817-2.545-1.42-3.695 6.37 2.561 1.43 1.103-1.862a1 1 0 011.082-.466c2.653.603 4.578 2.948 4.578 5.575 0 3.143-2.656 5.8-5.8 5.8a5.764 5.764 0 01-3.791-1.4H5a1 1 0 110-2h2.5c.265 0 .52.106.707.293a3.78 3.78 0 002.693 1.107c2.06 0 3.8-1.74 3.8-3.8 0-1.474-.953-2.815-2.345-3.406l-1.195 2.016a.998.998 0 01-1.347.363l-4.3-2.4A1.003 1.003 0 015.135 9.6l4.701-8.1a.996.996 0 011.352-.37l4.299 2.4a1.002 1.002 0 01.373 1.382l-.979 1.653z\" />\n</svg>";var sort="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M6 5v15m5-5l-5 5-5-5m17 4V4m-5 5l5-5 5 5\" />\n</svg>";var star="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-star\"><polygon points=\"12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2\"></polygon></svg>";var stethoscope="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\"\n stroke-linejoin=\"round\" stroke-width=\"2\" viewBox=\"0 0 24 24\">\n <path d=\"M13.1 2.5h2.3v4.6c0 3.2-2.6 5.7-5.7 5.7S4 10.2 4 7.1V2.5h2.3\" />\n <circle cx=\"17.7\" cy=\"15\" r=\"2.3\" />\n <path d=\"M17.7 17.5c0 2.2-1.8 4-4 4s-4-1.8-4-4m0 0v-4\" />\n</svg>";var tag="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-tag\"><path d=\"M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z\"></path><line x1=\"7\" y1=\"7\" x2=\"7.01\" y2=\"7\"></line></svg>";var twitter="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path fill=\"#55ACEE\"\n d=\"M11.653 7.276l.052.858-.867-.105C7.682 7.626 4.925 6.26 2.584 3.967L1.439 2.83l-.294.84C.52 5.544.919 7.522 2.22 8.853c.693.735.537.84-.66.402-.415-.14-.78-.245-.814-.192-.122.122.294 1.715.624 2.346.45.875 1.37 1.733 2.376 2.24l.85.403-1.006.018c-.971 0-1.006.017-.902.385.347 1.138 1.717 2.346 3.243 2.871l1.075.368-.937.56a9.764 9.764 0 01-4.647 1.296c-.78.017-1.422.087-1.422.14 0 .175 2.116 1.155 3.347 1.54 3.694 1.138 8.08.648 11.376-1.295 2.34-1.383 4.682-4.132 5.774-6.793.59-1.418 1.18-4.01 1.18-5.252 0-.806.052-.91 1.023-1.874.572-.56 1.11-1.172 1.214-1.348.173-.332.156-.332-.729-.035-1.474.526-1.682.456-.953-.332.537-.56 1.179-1.576 1.179-1.873 0-.053-.26.035-.555.192-.312.175-1.006.438-1.526.595l-.937.298-.85-.578c-.467-.315-1.127-.665-1.473-.77-.885-.245-2.237-.21-3.035.07-2.168.788-3.538 2.819-3.382 5.042z\" />\n</svg>";var unlock="<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 1C8.68629 1 6 3.68629 6 7V10H5C3.34315 10 2 11.3431 2 13V20C2 21.6569 3.34315 23 5 23H19C20.6569 23 22 21.6569 22 20V13C22 11.3431 20.6569 10 19 10H8V7C8 4.79086 9.79086 3 12 3C13.6387 3 15.0494 3.98556 15.6676 5.40037C15.8887 5.90646 16.4782 6.13747 16.9843 5.91635C17.4904 5.69523 17.7214 5.10572 17.5003 4.59963C16.5754 2.48263 14.4619 1 12 1ZM4 13C4 12.4477 4.44772 12 5 12H19C19.5523 12 20 12.4477 20 13V20C20 20.5523 19.5523 21 19 21H5C4.44772 21 4 20.5523 4 20V13Z\" fill=\"currentColor\"/>\n</svg>\n";var user="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-user\"><path d=\"M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2\"></path><circle cx=\"12\" cy=\"7\" r=\"4\"></circle></svg>";var users="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-users\"><path d=\"M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2\"></path><circle cx=\"9\" cy=\"7\" r=\"4\"></circle><path d=\"M23 21v-2a4 4 0 0 0-3-3.87\"></path><path d=\"M16 3.13a4 4 0 0 1 0 7.75\"></path></svg>";var watch="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-watch\"><circle cx=\"12\" cy=\"12\" r=\"7\"></circle><polyline points=\"12 9 12 12 13.5 13.5\"></polyline><path d=\"M16.51 17.35l-.35 3.83a2 2 0 0 1-2 1.82H9.83a2 2 0 0 1-2-1.82l-.35-3.83m.01-10.7l.35-3.83A2 2 0 0 1 9.83 1h4.35a2 2 0 0 1 2 1.82l.35 3.83\"></path></svg>";var wifi="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-wifi\"><path d=\"M5 12.55a11 11 0 0 1 14.08 0\"></path><path d=\"M1.42 9a16 16 0 0 1 21.16 0\"></path><path d=\"M8.53 16.11a6 6 0 0 1 6.95 0\"></path><line x1=\"12\" y1=\"20\" x2=\"12.01\" y2=\"20\"></line></svg>";var x="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-x\"><line x1=\"18\" y1=\"6\" x2=\"6\" y2=\"18\"></line><line x1=\"6\" y1=\"6\" x2=\"18\" y2=\"18\"></line></svg>";var table="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-table\"><path d=\"M9 3H5a2 2 0 0 0-2 2v4m6-6h10a2 2 0 0 1 2 2v4M9 3v18m0 0h10a2 2 0 0 0 2-2V9M9 21H5a2 2 0 0 1-2-2V9m0 0h18\"></path></svg>";var zap="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-zap\"><polygon points=\"13 2 3 14 12 14 11 22 21 10 12 10 13 2\"></polygon></svg>";var square="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-square\"><rect x=\"3\" y=\"3\" width=\"18\" height=\"18\" rx=\"2\" ry=\"2\"></rect></svg>";var icons = {"alert-circle":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-alert-circle\"><circle cx=\"12\" cy=\"12\" r=\"10\"></circle><line x1=\"12\" y1=\"8\" x2=\"12\" y2=\"12\"></line><line x1=\"12\" y1=\"16\" x2=\"12.01\" y2=\"16\"></line></svg>","alert-triangle":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-alert-triangle\"><path d=\"M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z\"></path><line x1=\"12\" y1=\"9\" x2=\"12\" y2=\"13\"></line><line x1=\"12\" y1=\"17\" x2=\"12.01\" y2=\"17\"></line></svg>","align-left":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-align-left\"><line x1=\"17\" y1=\"10\" x2=\"3\" y2=\"10\"></line><line x1=\"21\" y1=\"6\" x2=\"3\" y2=\"6\"></line><line x1=\"21\" y1=\"14\" x2=\"3\" y2=\"14\"></line><line x1=\"17\" y1=\"18\" x2=\"3\" y2=\"18\"></line></svg>",apple:apple,"arrow-down":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-arrow-down\"><line x1=\"12\" y1=\"5\" x2=\"12\" y2=\"19\"></line><polyline points=\"19 12 12 19 5 12\"></polyline></svg>","arrow-left":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-arrow-left\"><line x1=\"19\" y1=\"12\" x2=\"5\" y2=\"12\"></line><polyline points=\"12 19 5 12 12 5\"></polyline></svg>","arrow-right":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-arrow-right\"><line x1=\"5\" y1=\"12\" x2=\"19\" y2=\"12\"></line><polyline points=\"12 5 19 12 12 19\"></polyline></svg>","arrow-up":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-arrow-up\"><line x1=\"12\" y1=\"19\" x2=\"12\" y2=\"5\"></line><polyline points=\"5 12 12 5 19 12\"></polyline></svg>",article:article,auditor:auditor,award:award,"bar-chart-2":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-bar-chart-2\"><line x1=\"18\" y1=\"20\" x2=\"18\" y2=\"10\"></line><line x1=\"12\" y1=\"20\" x2=\"12\" y2=\"4\"></line><line x1=\"6\" y1=\"20\" x2=\"6\" y2=\"14\"></line></svg>",bell:bell,"bell-curve":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"17\" fill=\"none\"><path fill=\"currentColor\" d=\"M0 15v2h1.373v-.002c.993-.03 1.851-.317 2.58-.82.756-.522 1.324-1.241 1.769-2.03.857-1.522 1.359-3.5 1.818-5.31l.023-.092c.486-1.914.933-3.644 1.649-4.91.348-.616.733-1.069 1.167-1.367C10.801 2.179 11.317 2 12 2s1.2.179 1.62.469c.435.298.82.75 1.168 1.367.716 1.266 1.163 2.996 1.649 4.91l.023.091c.46 1.81.961 3.79 1.818 5.31.445.79 1.013 1.51 1.77 2.031.728.503 1.586.79 2.58.82V17H24v-2h-1.204c-.68 0-1.194-.178-1.613-.468-.432-.298-.815-.75-1.162-1.367-.714-1.266-1.16-2.996-1.646-4.911l-.019-.075c-.46-1.816-.964-3.802-1.827-5.327-.446-.79-1.016-1.51-1.775-2.031C13.983.29 13.067 0 12 0s-1.983.29-2.754.82c-.759.522-1.329 1.242-1.775 2.032-.863 1.525-1.367 3.511-1.827 5.327l-.02.075c-.485 1.915-.931 3.645-1.645 4.911-.347.617-.73 1.07-1.162 1.367-.42.29-.934.468-1.613.468H0Z\"/></svg>",book:book,bookmark:bookmark,"book-open":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-book-open\"><path d=\"M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z\"></path><path d=\"M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z\"></path></svg>",box:box,bubble:bubble,"bubble-check":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"currentColor\" stroke=\"currentColor\"\n viewBox=\"0 0 24 24\">\n <path stroke=\"none\"\n d=\"M2.803 12l1.752 1.168c.278.186.445.499.445.832v5c0 .552.449 1 1 1h14a1 1 0 001-1V5c0-.551-.448-1-1-1H6c-.551 0-1 .449-1 1v5c0 .334-.167.646-.445.832L2.803 12zM20 22H6c-1.654 0-3-1.345-3-3v-4.464L.446 12.832a1 1 0 010-1.664L3 9.465V5c0-1.654 1.346-3 3-3h14c1.655 0 3 1.346 3 3v14c0 1.655-1.345 3-3 3z\" />\n <path fill=\"none\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M17 9l-6 6-2.5-2.5\" />\n</svg>","bubble-image":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path fill=\"currentColor\"\n d=\"M15.9 7.7a1.301 1.301 0 010 2.6A1.302 1.302 0 0114.6 9c0-.717.583-1.3 1.3-1.3zm0 4.6c1.82 0 3.3-1.48 3.3-3.3 0-1.82-1.48-3.3-3.3-3.3A3.304 3.304 0 0012.6 9c0 1.82 1.48 3.3 3.3 3.3zM6 20c-.551 0-1-.448-1-1v-2.586l3-3 5.293 5.293a.997.997 0 001.414 0l2.263-2.263 3.233 3.515c-.068.015-.131.041-.203.041H6zm-3.197-8l1.752-1.168C4.833 10.646 5 10.334 5 10V5c0-.552.449-1 1-1h14a1 1 0 011 1v12.871l-3.264-3.548a1 1 0 00-1.443-.03L14 16.586l-5.293-5.294a1.03 1.03 0 00-1.414 0l-2.362 2.363a1.004 1.004 0 00-.376-.487L2.803 12zM20 2H6C4.346 2 3 3.345 3 5v4.464L.445 11.167a1.002 1.002 0 000 1.665L3 14.535V19c0 1.654 1.346 3 3 3h14c1.654 0 3-1.346 3-3V5c0-1.655-1.346-3-3-3z\" />\n</svg>","bubble-pill":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path fill=\"currentColor\"\n d=\"M20 2c1.654 0 3 1.345 3 3v14c0 1.654-1.346 3-3 3H6c-1.654 0-3-1.346-3-3v-4.465L.445 12.832a1.001 1.001 0 010-1.665L3 9.464V5c0-1.655 1.346-3 3-3h14zm1 17V5a1 1 0 00-1-1H6c-.551 0-1 .448-1 1v5c0 .334-.167.646-.445.832L2.803 12l1.752 1.168c.278.186.445.498.445.832v5c0 .552.449 1 1 1h14a1 1 0 001-1zM15.117 6.487a3.161 3.161 0 012.426 1.044c1.26 1.4 1.244 3.497-.036 4.776-.018.018-.041.023-.06.04-.016.018-.022.042-.04.06l-4 4c-.021.021-.05.028-.073.048-.024.027-.037.062-.065.088-.72.648-1.595.971-2.445.971a3.15 3.15 0 01-2.367-1.045c-1.26-1.399-1.243-3.497.036-4.777.018-.017.04-.023.06-.039.016-.019.022-.043.04-.06l4-4c.022-.022.05-.03.074-.05.025-.027.036-.06.065-.087a3.696 3.696 0 012.385-.969zm.976 4.405c.527-.526.512-1.416-.036-2.023a1.172 1.172 0 00-.9-.382 1.72 1.72 0 00-1.087.456c-.01.01-.023.011-.034.02-.011.013-.016.031-.03.044L12.715 10.3l1.986 1.985 1.293-1.292c.018-.018.04-.024.059-.039.017-.02.022-.044.04-.062zm-4.1 4.1l1.293-1.293-1.986-1.985-1.293 1.293c-.018.017-.04.023-.06.04-.015.018-.021.042-.04.06-.527.527-.511 1.415.037 2.024.554.615 1.437.42 1.987-.074.01-.009.022-.01.032-.019.012-.015.017-.032.03-.046z\" />\n</svg>","bubble-text":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path fill=\"currentColor\"\n d=\"M2.803 12l1.752 1.168c.278.186.445.499.445.832v5c0 .552.449 1 1 1h14a1 1 0 001-1V5c0-.551-.448-1-1-1H6c-.551 0-1 .449-1 1v5c0 .334-.167.646-.445.832L2.803 12zM20 22H6c-1.654 0-3-1.345-3-3v-4.464L.446 12.832a1 1 0 010-1.664L3 9.465V5c0-1.654 1.346-3 3-3h14c1.655 0 3 1.346 3 3v14c0 1.655-1.345 3-3 3zm-4.2-7H8a1 1 0 110-2h7.8a1 1 0 110 2zm2.2-4H8a1 1 0 010-2h10a1 1 0 110 2z\" />\n</svg>",bulb:bulb,calculator:calculator,charts:charts,check:check,"check-circle":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-check-circle\"><path d=\"M22 11.08V12a10 10 0 1 1-5.93-9.14\"></path><polyline points=\"22 4 12 14.01 9 11.01\"></polyline></svg>","check-square":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M8 11l3 3L22 3\" />\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M20 12v7a2 2 0 01-2 2H4a2 2 0 01-2-2V5a2 2 0 012-2h11\" />\n</svg>","checkmark-circle-filled":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"currentColor\" viewBox=\"0 0 24 24\">\n <path fill-rule=\"evenodd\"\n d=\"M12 23c6.075 0 11-4.925 11-11S18.075 1 12 1 1 5.925 1 12s4.925 11 11 11zm5.7-13.3l-7 7c-.2.2-.4.3-.7.3-.3 0-.5-.1-.7-.3l-3-3c-.4-.4-.4-1 0-1.4.4-.4 1-.4 1.4 0l2.3 2.3 6.3-6.3c.4-.4 1-.4 1.4 0 .4.4.4 1 0 1.4z\"\n clip-rule=\"evenodd\" />\n</svg>","chevron-down":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-chevron-down\"><polyline points=\"6 9 12 15 18 9\"></polyline></svg>","chevrons-down":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-chevrons-down\"><polyline points=\"7 13 12 18 17 13\"></polyline><polyline points=\"7 6 12 11 17 6\"></polyline></svg>","chevron-left":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-chevron-left\"><polyline points=\"15 18 9 12 15 6\"></polyline></svg>","chevron-right":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-chevron-right\"><polyline points=\"9 18 15 12 9 6\"></polyline></svg>","chevron-up":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-chevron-up\"><polyline points=\"18 15 12 9 6 15\"></polyline></svg>","chevrons-up":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-chevrons-up\"><polyline points=\"17 11 12 6 7 11\"></polyline><polyline points=\"17 18 12 13 7 18\"></polyline></svg>",circle:circle,clipboard:clipboard,coffee:coffee,collapse:collapse,compass:compass,copy:copy,"corner-down-left":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M9 10l-5 5 5 5\" />\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M20 4v7a4 4 0 01-4 4H4\" />\n</svg>","corner-down-right":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-corner-down-right\"><polyline points=\"15 10 20 15 15 20\"></polyline><path d=\"M4 4v7a4 4 0 0 0 4 4h12\"></path></svg>",download:download,"edit-3":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-edit-3\"><path d=\"M12 20h9\"></path><path d=\"M16.5 3.5a2.121 2.121 0 0 1 3 3L7 19l-4 1 1-4L16.5 3.5z\"></path></svg>","edit-3-filled":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"currentColor\" stroke=\"currentColor\"\n viewBox=\"0 0 24 24\">\n <path fill=\"none\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M12 20h9\" />\n <path stroke=\"none\"\n d=\"M18 2.83c-.695 0-1.362.276-1.854.768l-12.5 12.5a.5.5 0 00-.131.232l-1 4a.5.5 0 00.606.606l4-1a.5.5 0 00.233-.131l12.5-12.5A2.62 2.62 0 0018 2.83z\" />\n</svg>","edit-square":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M7.333 2.667H2.666A1.333 1.333 0 001.333 4v9.334a1.333 1.333 0 001.333 1.333H12a1.334 1.334 0 001.333-1.333V8.667\" />\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M12.333 1.667a1.414 1.414 0 112 2L8 10.001l-2.667.666L6 8l6.333-6.333z\" />\n</svg>",education:education,expand:expand,"external-link":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-external-link\"><path d=\"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6\"></path><polyline points=\"15 3 21 3 21 9\"></polyline><line x1=\"10\" y1=\"14\" x2=\"21\" y2=\"3\"></line></svg>",eye:eye,"eye-off":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-eye-off\"><path d=\"M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19m-6.72-1.07a3 3 0 1 1-4.24-4.24\"></path><line x1=\"1\" y1=\"1\" x2=\"23\" y2=\"23\"></line></svg>",facebook:facebook,"face-happy":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\"\n stroke-linejoin=\"round\" stroke-width=\"2\" viewBox=\"0 0 24 24\">\n <circle cx=\"12\" cy=\"12\" r=\"10\" />\n <path d=\"M16 14.7c-2.2 2.2-5.8 2.2-8 0m.9-5.3h0m6.2 0h0\" />\n</svg>","face-neutral":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\"\n stroke-linejoin=\"round\" stroke-width=\"2\" viewBox=\"0 0 24 24\">\n <path d=\"M8.9 9.4h0m6.2 0h0\" />\n <circle cx=\"12\" cy=\"12\" r=\"10\" />\n <path d=\"M16 15.5H8\" />\n</svg>","face-sad":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\"\n stroke-linejoin=\"round\" stroke-width=\"2\" viewBox=\"0 0 24 24\">\n <path d=\"M8.9 9.4h0m6.2 0h0\" />\n <circle cx=\"12\" cy=\"12\" r=\"10\" />\n <path d=\"M8 16.3c2.2-2.2 5.8-2.2 8 0\" />\n</svg>","file-text":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-file-text\"><path d=\"M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z\"></path><polyline points=\"14 2 14 8 20 8\"></polyline><line x1=\"16\" y1=\"13\" x2=\"8\" y2=\"13\"></line><line x1=\"16\" y1=\"17\" x2=\"8\" y2=\"17\"></line><polyline points=\"10 9 9 9 8 9\"></polyline></svg>",figma:figma,"filled-dot":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"currentColor\" viewBox=\"0 0 24 24\">\n <circle cx=\"12\" cy=\"12\" r=\"4\" />\n</svg>",film:film,filter:filter,flag:flag,"flag-filled":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"currentColor\" stroke=\"currentColor\"\n viewBox=\"0 0 24 24\">\n <path fill-rule=\"evenodd\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1v12z\" clip-rule=\"evenodd\" />\n <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M4 22v-7\" />\n</svg>",flask:flask,flowchart:flowchart,folder:folder,"folder-check-filled":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"currentColor\" viewBox=\"0 0 24 24\">\n <path fill-rule=\"evenodd\"\n d=\"M1 5a3 3 0 013-3h5a1 1 0 01.832.445L11.535 5H20a3 3 0 013 3v11a3 3 0 01-3 3H4a3 3 0 01-3-3V5zm15.707 5.707a1 1 0 00-1.414-1.414L10 14.586l-1.793-1.793a1 1 0 00-1.414 1.414l2.5 2.5a1 1 0 001.414 0l6-6z\"\n clip-rule=\"evenodd\" />\n</svg>","folder-plus":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-folder-plus\"><path d=\"M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z\"></path><line x1=\"12\" y1=\"11\" x2=\"12\" y2=\"17\"></line><line x1=\"9\" y1=\"14\" x2=\"15\" y2=\"14\"></line></svg>",gift:gift,grid:grid,google:google,"hammer-filled":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"currentColor\" viewBox=\"0 0 24 24\">\n <path\n d=\"M15.741 3.293l6 6c.48.479.743 1.103.743 1.757 0 .654-.263 1.278-.743 1.758l-1.399 1.399a2.482 2.482 0 01-1.758.738 2.479 2.479 0 01-1.756-.737l-1.711-1.693-8.582 8.581a.997.997 0 01-1.414 0l-2.828-2.828a1 1 0 010-1.415l8.559-8.559-3.621-3.583A.998.998 0 017.934 3h7.1c.266 0 .52.105.707.293z\" />\n</svg>",hash:hash,headphones:headphones,"help-circle":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-help-circle\"><circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3\"></path><line x1=\"12\" y1=\"17\" x2=\"12.01\" y2=\"17\"></line></svg>",home:home,illustration:illustration,image:image,"image-broken":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M1 3a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v7h-3v3h-3v3h-3v3H3a2 2 0 0 1-2-2V3Z\" clip-rule=\"evenodd\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M23 18v-4h-3v3h-3v3h-3v3h7a2 2 0 0 0 2-2v-3Z\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M6.5 8a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z\" clip-rule=\"evenodd\"/><path fill=\"currentColor\" d=\"M15.188 10.707a1 1 0 0 0 1.414-1.414l-1.414 1.414ZM13.895 8l.707-.707a1 1 0 0 0-1.383-.03l.676.737ZM2.324 17.263l-.737.676 1.352 1.474.737-.676-1.352-1.474Zm14.278-7.97-2-2-1.414 1.414 2 2 1.414-1.414Zm-3.383-2.03-10.895 10 1.352 1.474 10.895-10-1.352-1.474Z\"/></svg>",info:info,institution:institution,key:key,layers:layers,link:link,list:list,loader:loader,lock:lock,mail:mail,maximize:maximize,"maximize-2":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-maximize-2\"><polyline points=\"15 3 21 3 21 9\"></polyline><polyline points=\"9 21 3 21 3 15\"></polyline><line x1=\"21\" y1=\"3\" x2=\"14\" y2=\"10\"></line><line x1=\"3\" y1=\"21\" x2=\"10\" y2=\"14\"></line></svg>","med-imaging":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path stroke=\"currentColor\" stroke-width=\"2\"\n d=\"M7.5 3H5a2 2 0 00-2 2v2.5m18 0V5a2 2 0 00-2-2h-2.5m0 18H19a2 2 0 002-2v-2.5m-18 0V19a2 2 0 002 2h2.5m9-3v-2.5a2 2 0 00-2-2h-5a2 2 0 00-2 2V18\" />\n <path fill=\"currentColor\" d=\"M12 10.5a3 3 0 100-6 3 3 0 000 6z\" />\n</svg>",meditricks:meditricks,menu:menu,"message-circle":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\"\n stroke-linejoin=\"round\" stroke-width=\"2\" viewBox=\"0 0 24 24\">\n <path\n d=\"M21 11.5a8.38 8.38 0 01-.9 3.8 8.5 8.5 0 01-7.6 4.7 8.38 8.38 0 01-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 01-.9-3.8 8.5 8.5 0 014.7-7.6 8.38 8.38 0 013.8-.9h.5a8.48 8.48 0 018 8v.5z\" />\n</svg>",minus:minus,"more-horizontal":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-more-horizontal\"><circle cx=\"12\" cy=\"12\" r=\"1\"></circle><circle cx=\"19\" cy=\"12\" r=\"1\"></circle><circle cx=\"5\" cy=\"12\" r=\"1\"></circle></svg>","more-vertical":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-more-vertical\"><circle cx=\"12\" cy=\"12\" r=\"1\"></circle><circle cx=\"12\" cy=\"5\" r=\"1\"></circle><circle cx=\"12\" cy=\"19\" r=\"1\"></circle></svg>",percent:percent,pill:pill,"play-circle":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-play-circle\"><circle cx=\"12\" cy=\"12\" r=\"10\"></circle><polygon points=\"10 8 16 12 10 16 10 8\"></polygon></svg>","play-filled":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"currentColor\" viewBox=\"0 0 24 24\">\n <path fill-rule=\"evenodd\"\n d=\"M7.042 4.245a2 2 0 012.04.073l9.333 6a2 2 0 010 3.364l-9.333 6A2 2 0 016 18V6a2 2 0 011.042-1.755z\"\n clip-rule=\"evenodd\" />\n</svg>",plus:plus,"plus-circle":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-plus-circle\"><circle cx=\"12\" cy=\"12\" r=\"10\"></circle><line x1=\"12\" y1=\"8\" x2=\"12\" y2=\"16\"></line><line x1=\"8\" y1=\"12\" x2=\"16\" y2=\"12\"></line></svg>","plus-circle-filled":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"currentColor\" viewBox=\"0 0 24 24\">\n <path fill-rule=\"evenodd\"\n d=\"M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12zm11-5a1 1 0 011 1v3h3a1 1 0 110 2h-3v3a1 1 0 11-2 0v-3H8a1 1 0 110-2h3V8a1 1 0 011-1z\"\n clip-rule=\"evenodd\" />\n</svg>",quiz:quiz,reset:reset,"rotate-cw":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-rotate-cw\"><polyline points=\"23 4 23 10 17 10\"></polyline><path d=\"M20.49 15a9 9 0 1 1-2.12-9.36L23 10\"></path></svg>",search:search,"search-list":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M4 6h16m-5 6h5m-4 6h4\" />\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M7.125 19.5a4.375 4.375 0 100-8.75 4.375 4.375 0 000 8.75z\" clip-rule=\"evenodd\" />\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M13.25 21.25l-3.033-3.033\" />\n</svg>",settings:settings,share:share,"shopping-bag":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-shopping-bag\"><path d=\"M6 2L3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z\"></path><line x1=\"3\" y1=\"6\" x2=\"21\" y2=\"6\"></line><path d=\"M16 10a4 4 0 0 1-8 0\"></path></svg>","show-all":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.333\"\n d=\"M13.333 2H4c-.733 0-1.333.6-1.333 1.333v3.334L.667 8l2 1.333v3.334C2.667 13.4 3.267 14 4 14h9.333c.734 0 1.334-.6 1.334-1.333V3.333c0-.733-.6-1.333-1.334-1.333z\" />\n <path fill=\"currentColor\"\n d=\"M9.693 9.673H7.64l-.393 1.174H6L8.12 5.16h1.087l2.126 5.687h-1.246l-.394-1.174zm-1.74-.953h1.42L8.66 6.593 7.953 8.72z\" />\n</svg>",sliders:sliders,smartzoom:smartzoom,sort:sort,"sort-ascending":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\"><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"m6 11 4.94-6.06a1.5 1.5 0 0 1 2.12 0L18 11H6Z\" clip-rule=\"evenodd\"/><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"m18 13-4.94 6.06a1.5 1.5 0 0 1-2.12 0L6 13h12Z\" clip-rule=\"evenodd\" opacity=\".3\"/></svg>","sort-descending":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\"><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"m18 13-4.94 6.06a1.5 1.5 0 0 1-2.12 0L6 13h12Z\" clip-rule=\"evenodd\"/><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"m6 11 4.94-6.06a1.5 1.5 0 0 1 2.12 0L18 11H6Z\" clip-rule=\"evenodd\" opacity=\".3\"/></svg>","sort-neutral":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\"><g fill=\"currentColor\" opacity=\".3\"><path d=\"m18 11-4.94-6.06a1.5 1.5 0 0 0-2.12 0L6 11h12ZM6 13l4.94 6.06a1.5 1.5 0 0 0 2.12 0L18 13H6Z\"/></g></svg>",star:star,stethoscope:stethoscope,tag:tag,"text-zoom-reset":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"currentColor\" viewBox=\"0 0 24 24\">\n <path fill-rule=\"evenodd\"\n d=\"M12.509 18H9.454l-.9-2H4.447l-.9 2H1.354l4.234-9.41h1.824l3.56 7.91 4.607-10.89h1.842L22.663 18H20.49l-1.269-3h-5.444l-1.269 3zM6.5 11.437L7.654 14H5.347L6.5 11.437zM18.376 13L16.5 8.566 14.624 13h3.752z\"\n clip-rule=\"evenodd\" />\n</svg>","thumbs-down":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><path stroke-width=\"2\" fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M21 4.077A1.31 1.31 0 0 0 19.688 3H18v9h1.688A1.31 1.31 0 0 0 21 10.923V4.077Zm-5 8.71V3H5.709a1 1 0 0 0-1 .85l-1.38 9a1.001 1.001 0 0 0 1 1.15H10a1 1 0 0 1 1 1v4a2 2 0 0 0 1.392 1.906L16 12.788ZM17.65 14l-3.736 8.406A1 1 0 0 1 13 23a4 4 0 0 1-4-4v-3H4.345a3 3 0 0 1-2.994-3.45l1.38-9A3 3 0 0 1 5.725 1h13.937a3.31 3.31 0 0 1 3.329 2.866c.006.044.009.09.009.134v7c0 .045-.003.09-.009.134A3.31 3.31 0 0 1 19.661 14H17.65Z\" clip-rule=\"evenodd\"/></svg>","thumbs-up":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-thumbs-up\"><path d=\"M14 9V5a3 3 0 0 0-3-3l-4 9v11h11.28a2 2 0 0 0 2-1.7l1.38-9a2 2 0 0 0-2-2.3zM7 22H4a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h3\"></path></svg>","timer-off":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M6.848 6.88a8 8 0 1011.275 11.27M19.748 15A8 8 0 0010 5.252M15.5 9.5l-.5.5\" />\n <path stroke-width=\"2\" d=\"M12 5V2\" />\n <path stroke-linecap=\"round\" stroke-width=\"2\" d=\"M10 2h4\" />\n <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M4 4l17 17\" />\n</svg>","timer-on":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M12 21a8 8 0 100-16 8 8 0 000 16zm3-11l-3 3\" />\n <path stroke-width=\"2\" d=\"M12 5V2\" />\n <path stroke-linecap=\"round\" stroke-width=\"2\" d=\"M10 2h4\" />\n</svg>","trash-2":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-trash-2\"><polyline points=\"3 6 5 6 21 6\"></polyline><path d=\"M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2\"></path><line x1=\"10\" y1=\"11\" x2=\"10\" y2=\"17\"></line><line x1=\"14\" y1=\"11\" x2=\"14\" y2=\"17\"></line></svg>",twitter:twitter,unlock:unlock,user:user,users:users,watch:watch,"wifi-off":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-wifi-off\"><line x1=\"1\" y1=\"1\" x2=\"23\" y2=\"23\"></line><path d=\"M16.72 11.06A10.94 10.94 0 0 1 19 12.55\"></path><path d=\"M5 12.55a10.94 10.94 0 0 1 5.17-2.39\"></path><path d=\"M10.71 5.05A16 16 0 0 1 22.58 9\"></path><path d=\"M1.42 9a15.91 15.91 0 0 1 4.7-2.88\"></path><path d=\"M8.53 16.11a6 6 0 0 1 6.95 0\"></path><line x1=\"12\" y1=\"20\" x2=\"12.01\" y2=\"20\"></line></svg>",wifi:wifi,x:x,"x-circle-filled":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"currentColor\" viewBox=\"0 0 24 24\">\n <path fill-rule=\"evenodd\"\n d=\"M12 23c6.075 0 11-4.925 11-11S18.075 1 12 1 1 5.925 1 12s4.925 11 11 11zm4.707-15.707a1 1 0 010 1.414L13.414 12l3.293 3.293a1 1 0 01-1.414 1.414L12 13.414l-3.293 3.293a1 1 0 01-1.414-1.414L10.586 12 7.293 8.707a1 1 0 011.414-1.414L12 10.586l3.293-3.293a1 1 0 011.414 0z\"\n clip-rule=\"evenodd\" />\n</svg>",table:table,zap:zap,square:square};
5
+ var apple="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path fill=\"currentColor\" fill-rule=\"evenodd\"\n d=\"M16.749 0c.214 1.458-.379 2.886-1.162 3.896-.837 1.084-2.28 1.922-3.679 1.879-.255-1.396.398-2.834 1.194-3.8C13.974.906 15.469.088 16.749 0zm4.201 20.518c.721-1.105.99-1.662 1.55-2.91-4.07-1.547-4.723-7.335-.694-9.556-1.23-1.54-2.956-2.434-4.586-2.434-1.174 0-1.979.306-2.71.585-.61.232-1.169.445-1.849.445-.734 0-1.385-.233-2.066-.477-.748-.269-1.533-.55-2.508-.55-1.83 0-3.776 1.117-5.01 3.028C1.34 11.34 1.636 16.4 4.45 20.71c1.006 1.542 2.35 3.275 4.107 3.29.73.008 1.215-.21 1.74-.445.601-.27 1.255-.563 2.386-.569 1.138-.007 1.78.29 2.374.564.511.236.986.454 1.71.447 1.758-.014 3.176-1.935 4.182-3.477z\"\n clip-rule=\"evenodd\" />\n</svg>";var article="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\"\n stroke-linejoin=\"round\" stroke-width=\"2\" viewBox=\"0 0 24 24\">\n <path d=\"M4 2h16v20H4zm12 4H8m6 4H8\" />\n <path d=\"M8 14h8v4H8z\" />\n</svg>";var auditor="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\"\n stroke-linejoin=\"round\" stroke-width=\"2\" viewBox=\"0 0 24 24\">\n <circle cx=\"6\" cy=\"7\" r=\"4\" />\n <circle cx=\"18\" cy=\"7\" r=\"4\" />\n <path\n d=\"M10 7h4m9 8.3c-.7.9-1.8 1.6-3.1 1.6-1.4 0-2.7-.7-3.3-1.8h0c-.4-.7-1.2-1.3-2.1-1.3-1.3 0-2.4 1-2.4 2.2 0 .3.1.6.2.9h0c.7 2 2.8 3.5 5.3 3.5 2.9 0 5.4-2.3 5.4-5.1h0zm-22 0c.7.9 1.8 1.6 3.1 1.6 1.4 0 2.7-.7 3.3-1.8h0c.4-.7 1.2-1.3 2.1-1.3 1.3 0 2.4 1 2.4 2.2 0 .3-.1.6-.2.9h0c-.7 2-2.8 3.5-5.3 3.5-2.9 0-5.4-2.3-5.4-5.1h0z\" />\n</svg>";var award="<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 15C15.866 15 19 11.866 19 8C19 4.13401 15.866 1 12 1C8.13401 1 5 4.13401 5 8C5 11.866 8.13401 15 12 15Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n<path d=\"M8.21 13.89L7 23L12 20L17 23L15.79 13.88\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n";var bell="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-bell\"><path d=\"M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9\"></path><path d=\"M13.73 21a2 2 0 0 1-3.46 0\"></path></svg>";var book="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-book\"><path d=\"M4 19.5A2.5 2.5 0 0 1 6.5 17H20\"></path><path d=\"M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z\"></path></svg>";var bookmark="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M19 21l-7-5-7 5V5a2 2 0 012-2h10a2 2 0 012 2v16z\" clip-rule=\"evenodd\" />\n</svg>";var box="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-box\"><path d=\"M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z\"></path><polyline points=\"3.27 6.96 12 12.01 20.73 6.96\"></polyline><line x1=\"12\" y1=\"22.08\" x2=\"12\" y2=\"12\"></line></svg>";var bubble="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\"\n stroke-linejoin=\"round\" stroke-width=\"2\" viewBox=\"0 0 24 24\">\n <path d=\"M20 3H6c-1.1 0-2 .9-2 2v5l-3 2 3 2v5c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z\" />\n</svg>";var bulb="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\"\n stroke-linejoin=\"round\" stroke-width=\"2\" viewBox=\"0 0 24 24\">\n <path\n d=\"M14 10h-4m2 0v7.9m4 0v-4.1c1.6-1.2 2.6-3.1 2.6-5.2 0-3.7-3-6.6-6.6-6.6S5.4 4.9 5.4 8.6c0 2.1 1 4 2.6 5.2v4.1h8zm-8 0l2 4.1h4l2-4.1\" />\n</svg>";var calculator="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\"\n stroke-linejoin=\"round\" stroke-width=\"2\" viewBox=\"0 0 24 24\">\n <path\n d=\"M4 7h16M7.9 10.5h0m4 0h0m4 0h0m-8 4h0m4 0h0m4 0h0m-7.9 4h3.9m4 0h0M18 22H6c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h12c1.1 0 2 .9 2 2v16c0 1.1-.9 2-2 2z\" />\n</svg>";var charts="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path stroke=\"currentColor\" stroke-linecap=\"square\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M3 10.5s1.366.011 1.5 0a.75.75 0 00.621-.443l1.65-3.875a.75.75 0 011.4.078l3.077 6.717a.75.75 0 001.449-.072l3.095-9.307a.75.75 0 011.457-.052L18.75 9.75c.045.157 0 .75 1.5.75H21\" />\n <path fill=\"currentColor\"\n d=\"M4 19.5a1 1 0 10-2 0h2zm-2 0v3h2v-3H2zm11 0a1 1 0 10-2 0h2zm-2 0v3h2v-3h-2zm11 0a1 1 0 10-2 0h2zm-2 0v3h2v-3h-2zm-11.5-3a1 1 0 10-2 0h2zm-2 0v6h2v-6h-2zm11 0a1 1 0 10-2 0h2zm-2 0v6h2v-6h-2z\" />\n</svg>";var check="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-check\"><polyline points=\"20 6 9 17 4 12\"></polyline></svg>";var circle="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-circle\"><circle cx=\"12\" cy=\"12\" r=\"10\"></circle></svg>";var clipboard="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-clipboard\"><path d=\"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2\"></path><rect x=\"8\" y=\"2\" width=\"8\" height=\"4\" rx=\"1\" ry=\"1\"></rect></svg>";var coffee="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-coffee\"><path d=\"M18 8h1a4 4 0 0 1 0 8h-1\"></path><path d=\"M2 8h16v9a4 4 0 0 1-4 4H6a4 4 0 0 1-4-4V8z\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"10\" y1=\"1\" x2=\"10\" y2=\"4\"></line><line x1=\"14\" y1=\"1\" x2=\"14\" y2=\"4\"></line></svg>";var collapse="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\"\n stroke-linejoin=\"round\" stroke-width=\"2\" viewBox=\"0 0 24 24\">\n <path d=\"M15 20.3L12 18l-3 2.3m3 1.7v-4M9 3.7L12 6l3-2.3M12 2v4m-7 4h14M5 14h14\" />\n</svg>";var compass="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-compass\"><circle cx=\"12\" cy=\"12\" r=\"10\"></circle><polygon points=\"16.24 7.76 14.12 14.12 7.76 16.24 9.88 9.88 16.24 7.76\"></polygon></svg>";var copy="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-copy\"><rect x=\"9\" y=\"9\" width=\"13\" height=\"13\" rx=\"2\" ry=\"2\"></rect><path d=\"M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1\"></path></svg>";var download="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-download\"><path d=\"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4\"></path><polyline points=\"7 10 12 15 17 10\"></polyline><line x1=\"12\" y1=\"15\" x2=\"12\" y2=\"3\"></line></svg>";var education="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M12 2L1 8l11 6 11-6-11-6z\"\n clip-rule=\"evenodd\" />\n <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M5 11v7l7 4.5 7-4.5v-7\" />\n <path stroke-linecap=\"round\" stroke-width=\"2\" d=\"M23 8v8\" />\n</svg>";var expand="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\"\n stroke-linejoin=\"round\" stroke-width=\"2\" viewBox=\"0 0 24 24\">\n <path d=\"M9 19.7l3 2.3 3-2.3M12 18v4m3-17.7L12 2 9 4.3M12 6V2m-7 8h14M5 14h14\" />\n</svg>";var eye="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-eye\"><path d=\"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z\"></path><circle cx=\"12\" cy=\"12\" r=\"3\"></circle></svg>";var facebook="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path fill=\"#1877F2\"\n d=\"M24 12c0-6.627-5.373-12-12-12S0 5.373 0 12c0 5.99 4.388 10.954 10.125 11.854V15.47H7.078V12h3.047V9.356c0-3.007 1.792-4.668 4.533-4.668 1.312 0 2.686.234 2.686.234v2.953H15.83c-1.491 0-1.956.925-1.956 1.875V12h3.328l-.532 3.469h-2.796v8.385C19.612 22.954 24 17.99 24 12z\" />\n <path fill=\"#fff\"\n d=\"M16.671 15.469L17.203 12h-3.328V9.75c0-.949.465-1.875 1.956-1.875h1.513V4.922s-1.374-.234-2.686-.234c-2.741 0-4.533 1.66-4.533 4.668V12H7.078v3.469h3.047v8.385a12.13 12.13 0 003.75 0V15.47h2.796z\" />\n</svg>";var figma="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\"><path fill=\"#1ABCFE\" d=\"M12 12a4 4 0 1 1 8 0 4 4 0 0 1-8 0Z\"/><path fill=\"#0ACF83\" d=\"M4 20a4 4 0 0 1 4-4h4v4a4 4 0 1 1-8 0Z\"/><path fill=\"#FF7262\" d=\"M12 0v8h4a4 4 0 1 0 0-8h-4Z\"/><path fill=\"#F24E1E\" d=\"M4 4a4 4 0 0 0 4 4h4V0H8a4 4 0 0 0-4 4Z\"/><path fill=\"#A259FF\" d=\"M4 12a4 4 0 0 0 4 4h4V8H8a4 4 0 0 0-4 4Z\"/></svg>";var film="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M2 4.18A2.18 2.18 0 014.18 2h15.64A2.18 2.18 0 0122 4.18v15.64A2.18 2.18 0 0119.82 22H4.18A2.18 2.18 0 012 19.82V4.18z\"\n clip-rule=\"evenodd\" />\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M7 2v20M17 2v20M2 12h20M2 7h5M2 17h5m10 0h5M17 7h5\" />\n</svg>";var filter="<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.09288 2.57912C1.25674 2.22596 1.61067 2 2 2H22C22.3893 2 22.7433 2.22596 22.9071 2.57912C23.071 2.93229 23.015 3.34845 22.7636 3.64573L15 12.8261V21C15 21.3466 14.8205 21.6684 14.5257 21.8507C14.2309 22.0329 13.8628 22.0494 13.5528 21.8944L9.55278 19.8944C9.214 19.725 9 19.3788 9 19V12.8261L1.23643 3.64573C0.985031 3.34845 0.929022 2.93229 1.09288 2.57912ZM4.1553 4L10.7636 11.8143C10.9162 11.9948 11 12.2236 11 12.46V18.382L13 19.382V12.46C13 12.2236 13.0838 11.9948 13.2364 11.8143L19.8447 4H4.1553Z\" fill=\"currentColor\"/>\n</svg>\n";var flag="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-flag\"><path d=\"M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1z\"></path><line x1=\"4\" y1=\"22\" x2=\"4\" y2=\"15\"></line></svg>";var flask="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\"\n stroke-linejoin=\"round\" stroke-width=\"2\" viewBox=\"0 0 24 24\">\n <path d=\"M4.4 21h15.2c1.1 0 1.8-1.2 1.3-2.2L14.3 7.3V3H9.7v4.3L3.1 18.8c-.5 1 .2 2.2 1.3 2.2zM8.5 3h7M5 16h14\" />\n</svg>";var flowchart="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M2 5a1 1 0 011-1h3a1 1 0 011 1v4a1 1 0 01-1 1H3a1 1 0 01-1-1V5zm15 0a1 1 0 011-1h3a1 1 0 011 1v4a1 1 0 01-1 1h-3a1 1 0 01-1-1V5zm0 10a1 1 0 011-1h3a1 1 0 011 1v4a1 1 0 01-1 1h-3a1 1 0 01-1-1v-4z\"\n clip-rule=\"evenodd\" />\n <path stroke-width=\"2\" d=\"M17 7h-5M7 7h5m5 11h-3a2 2 0 01-2-2V7\" />\n</svg>";var folder="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path fill=\"currentColor\"\n d=\"M3.6 8a.58.58 0 00-.6.6v11.2c0 .348.252.6.6.6h12.8a.58.58 0 00.6-.6V11a.58.58 0 00-.6-.6H9.2c-.334 0-.646-.168-.832-.446L7.065 8H3.6zm12.8 14.4H3.6A2.572 2.572 0 011 19.8V8.6C1 7.142 2.142 6 3.6 6h4c.334 0 .646.167.832.444L9.735 8.4H16.4c1.458 0 2.6 1.143 2.6 2.6v8.8c0 1.459-1.142 2.6-2.6 2.6zM22 21a1 1 0 01-1-1V3H9v1a1 1 0 01-2 0V2a1 1 0 011-1h14a1 1 0 011 1v18a1 1 0 01-1 1zM18 7h-6a1 1 0 010-2h6a1 1 0 110 2z\" />\n</svg>";var gift="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M20.8 12v11H3.2V12M23 6.5H1V12h22V6.5zM12 23V6.5M12 6.5H7.05a2.75 2.75 0 110-5.5C10.9 1 12 6.5 12 6.5zM12 6.5h4.95a2.75 2.75 0 000-5.5C13.1 1 12 6.5 12 6.5z\" />\n</svg>";var grid="\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\"><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M2 3a1 1 0 0 1 1-1h7a1 1 0 0 1 1 1v7a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V3Zm2 1v5h5V4H4ZM13 3a1 1 0 0 1 1-1h7a1 1 0 0 1 1 1v7a1 1 0 0 1-1 1h-7a1 1 0 0 1-1-1V3Zm2 1v5h5V4h-5ZM13 14a1 1 0 0 1 1-1h7a1 1 0 0 1 1 1v7a1 1 0 0 1-1 1h-7a1 1 0 0 1-1-1v-7Zm2 1v5h5v-5h-5ZM2 14a1 1 0 0 1 1-1h7a1 1 0 0 1 1 1v7a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1v-7Zm2 1v5h5v-5H4Z\" clip-rule=\"evenodd\"/></svg>";var google="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path fill=\"#EA4335\"\n d=\"M12 4.64c2.253 0 3.773.973 4.64 1.787l3.387-3.307C17.947 1.187 15.24 0 12 0 7.307 0 3.253 2.693 1.28 6.613l3.88 3.014C6.133 6.733 8.827 4.64 12 4.64z\" />\n <path fill=\"#4285F4\"\n d=\"M23.52 12.267c0-.987-.08-1.707-.253-2.454H12v4.454h6.613c-.133 1.106-.853 2.773-2.453 3.893l3.787 2.933C22.213 19 23.52 15.92 23.52 12.267z\" />\n <path fill=\"#FBBC05\"\n d=\"M5.173 14.373a7.387 7.387 0 01-.4-2.373c0-.827.147-1.627.387-2.373L1.28 6.613A12.01 12.01 0 000 12c0 1.933.467 3.76 1.28 5.387l3.893-3.014z\" />\n <path fill=\"#34A853\"\n d=\"M12 24c3.24 0 5.96-1.067 7.947-2.907L16.16 18.16c-1.013.707-2.373 1.2-4.16 1.2-3.173 0-5.867-2.093-6.827-4.987l-3.88 3.014C3.267 21.307 7.307 24 12 24z\" />\n</svg>";var hash="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-hash\"><line x1=\"4\" y1=\"9\" x2=\"20\" y2=\"9\"></line><line x1=\"4\" y1=\"15\" x2=\"20\" y2=\"15\"></line><line x1=\"10\" y1=\"3\" x2=\"8\" y2=\"21\"></line><line x1=\"16\" y1=\"3\" x2=\"14\" y2=\"21\"></line></svg>";var headphones="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M3 18v-6a9 9 0 0118 0v6\" />\n <path fill=\"currentColor\"\n d=\"M21 14h1a1 1 0 00-1-1v1zM3 14v-1a1 1 0 00-1 1h1zm17 5a1 1 0 01-1 1v2a3 3 0 003-3h-2zm-1 1h-1v2h1v-2zm-1 0a1 1 0 01-1-1h-2a3 3 0 003 3v-2zm-1-1v-3h-2v3h2zm0-3a1 1 0 011-1v-2a3 3 0 00-3 3h2zm1-1h3v-2h-3v2zm2-1v5h2v-5h-2zM2 19a3 3 0 003 3v-2a1 1 0 01-1-1H2zm3 3h1v-2H5v2zm1 0a3 3 0 003-3H7a1 1 0 01-1 1v2zm3-3v-3H7v3h2zm0-3a3 3 0 00-3-3v2a1 1 0 011 1h2zm-3-3H3v2h3v-2zm-4 1v5h2v-5H2z\" />\n</svg>";var home="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-home\"><path d=\"M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z\"></path><polyline points=\"9 22 9 12 15 12 15 22\"></polyline></svg>";var illustration="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M3 5a2 2 0 012-2h14a2 2 0 012 2v14a2 2 0 01-2 2H5a2 2 0 01-2-2V5z\" clip-rule=\"evenodd\" />\n <path fill=\"currentColor\" d=\"M15 18a3 3 0 100-6 3 3 0 000 6z\" />\n <path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M13.38 10.8L10.5 6 6 13.5h4.756a4.514 4.514 0 012.624-2.7z\"\n clip-rule=\"evenodd\" />\n</svg>";var image="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-image\"><rect x=\"3\" y=\"3\" width=\"18\" height=\"18\" rx=\"2\" ry=\"2\"></rect><circle cx=\"8.5\" cy=\"8.5\" r=\"1.5\"></circle><polyline points=\"21 15 16 10 5 21\"></polyline></svg>";var info="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-info\"><circle cx=\"12\" cy=\"12\" r=\"10\"></circle><line x1=\"12\" y1=\"16\" x2=\"12\" y2=\"12\"></line><line x1=\"12\" y1=\"8\" x2=\"12.01\" y2=\"8\"></line></svg>";var institution="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M9.5 11.5h5\" />\n <path stroke=\"currentColor\" stroke-width=\"2\"\n d=\"M17.75 9.582V19.75a1 1 0 01-1 1h-9.5a1 1 0 01-1-1V9.582a1 1 0 01.42-.815l4.75-3.378a1 1 0 011.16 0l4.75 3.378a1 1 0 01.42.815z\" />\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M13.875 21v-5.25h-3.75V21\" />\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\"\n d=\"M4.8 12H4a1 1 0 00-1 1v7a1 1 0 001 1h16a1 1 0 001-1v-7a1 1 0 00-1-1h-.8m-7.005-7.126V2m.305 1.5L15 3\" />\n</svg>";var key="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-key\"><path d=\"M21 2l-2 2m-7.61 7.61a5.5 5.5 0 1 1-7.778 7.778 5.5 5.5 0 0 1 7.777-7.777zm0 0L15.5 7.5m0 0l3 3L22 7l-3-3m-3.5 3.5L19 4\"></path></svg>";var layers="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-layers\"><polygon points=\"12 2 2 7 12 12 22 7 12 2\"></polygon><polyline points=\"2 17 12 22 22 17\"></polyline><polyline points=\"2 12 12 17 22 12\"></polyline></svg>";var link="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-link\"><path d=\"M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71\"></path><path d=\"M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71\"></path></svg>";var list="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-list\"><line x1=\"8\" y1=\"6\" x2=\"21\" y2=\"6\"></line><line x1=\"8\" y1=\"12\" x2=\"21\" y2=\"12\"></line><line x1=\"8\" y1=\"18\" x2=\"21\" y2=\"18\"></line><line x1=\"3\" y1=\"6\" x2=\"3.01\" y2=\"6\"></line><line x1=\"3\" y1=\"12\" x2=\"3.01\" y2=\"12\"></line><line x1=\"3\" y1=\"18\" x2=\"3.01\" y2=\"18\"></line></svg>";var loader="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-loader\"><line x1=\"12\" y1=\"2\" x2=\"12\" y2=\"6\"></line><line x1=\"12\" y1=\"18\" x2=\"12\" y2=\"22\"></line><line x1=\"4.93\" y1=\"4.93\" x2=\"7.76\" y2=\"7.76\"></line><line x1=\"16.24\" y1=\"16.24\" x2=\"19.07\" y2=\"19.07\"></line><line x1=\"2\" y1=\"12\" x2=\"6\" y2=\"12\"></line><line x1=\"18\" y1=\"12\" x2=\"22\" y2=\"12\"></line><line x1=\"4.93\" y1=\"19.07\" x2=\"7.76\" y2=\"16.24\"></line><line x1=\"16.24\" y1=\"7.76\" x2=\"19.07\" y2=\"4.93\"></line></svg>";var lock="<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 13C3 11.8954 3.89543 11 5 11H19C20.1046 11 21 11.8954 21 13V20C21 21.1046 20.1046 22 19 22H5C3.89543 22 3 21.1046 3 20V13Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 3C9.79086 3 8 4.79086 8 7V11C8 11.5523 7.55228 12 7 12C6.44772 12 6 11.5523 6 11V7C6 3.68629 8.68629 1 12 1C15.3137 1 18 3.68629 18 7V11C18 11.5523 17.5523 12 17 12C16.4477 12 16 11.5523 16 11V7C16 4.79086 14.2091 3 12 3Z\" fill=\"currentColor\"/>\n</svg>\n";var mail="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-mail\"><path d=\"M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z\"></path><polyline points=\"22,6 12,13 2,6\"></polyline></svg>";var maximize="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-maximize\"><path d=\"M8 3H5a2 2 0 0 0-2 2v3m18 0V5a2 2 0 0 0-2-2h-3m0 18h3a2 2 0 0 0 2-2v-3M3 16v3a2 2 0 0 0 2 2h3\"></path></svg>";var meditricks="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path fill=\"currentColor\"\n d=\"M5.784 18.226l1.926 1.541 3.484-4.758c.188-.257.525-.39.806-.409a1 1 0 01.802.402l3.482 4.67 1.941-1.553-3.33-4.527a1.002 1.002 0 01.475-1.536l5.35-1.868-.819-2.295-5.45 2.043A.997.997 0 0113.101 9V3h-2.3v6a.998.998 0 01-1.357.934L4.098 7.897l-.82 2.299 5.461 1.963a1.002 1.002 0 01.46 1.544l-3.415 4.523zM7.9 22.2c-.225 0-.446-.077-.624-.219l-3.5-2.8a1 1 0 01-.174-1.384l3.182-4.216-5.122-1.84a1.001 1.001 0 01-.604-1.278l1.5-4.2c.091-.253.28-.459.524-.572.244-.111.523-.121.774-.026L8.8 7.549V2a1 1 0 011-1h4.3a1 1 0 011 1v5.557l5.05-1.894a.999.999 0 011.292.6l1.5 4.2a.999.999 0 01-.612 1.281l-5.022 1.753 3.098 4.209a1.001 1.001 0 01-.18 1.374l-3.5 2.801a1.002 1.002 0 01-1.427-.183l-3.29-4.415-3.302 4.507a1 1 0 01-.807.41z\" />\n</svg>";var menu="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-menu\"><line x1=\"3\" y1=\"12\" x2=\"21\" y2=\"12\"></line><line x1=\"3\" y1=\"6\" x2=\"21\" y2=\"6\"></line><line x1=\"3\" y1=\"18\" x2=\"21\" y2=\"18\"></line></svg>";var minus="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-minus\"><line x1=\"5\" y1=\"12\" x2=\"19\" y2=\"12\"></line></svg>";var percent="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-percent\"><line x1=\"19\" y1=\"5\" x2=\"5\" y2=\"19\"></line><circle cx=\"6.5\" cy=\"6.5\" r=\"2.5\"></circle><circle cx=\"17.5\" cy=\"17.5\" r=\"2.5\"></circle></svg>";var pill="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M4.222 12.707a5 5 0 007.071 7.071l4.243-4.242-7.071-7.072-4.243 4.243z\" />\n <path fill=\"currentColor\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M12.707 4.222L8.465 8.464l7.07 7.072 4.244-4.243a5 5 0 10-7.072-7.071v0z\" />\n</svg>";var plus="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-plus\"><line x1=\"12\" y1=\"5\" x2=\"12\" y2=\"19\"></line><line x1=\"5\" y1=\"12\" x2=\"19\" y2=\"12\"></line></svg>";var quiz="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"22\" height=\"22\" fill=\"none\" viewBox=\"0 0 22 22\">\n <path fill=\"currentColor\" fill-rule=\"evenodd\"\n d=\"M6.8 12.1a1 1 0 110 2C3.05 14.1 0 11.005 0 7.2 0 3.387 2.987.4 6.8.4c3.75 0 6.8 3.05 6.8 6.8a1 1 0 11-2 0c0-2.646-2.154-4.8-4.8-4.8C4.109 2.4 2 4.509 2 7.2c0 2.748 2.109 4.9 4.8 4.9zm-1-7.4a1 1 0 012 0v2.085l1.007 1.008a.999.999 0 11-1.414 1.414l-1.3-1.3A.997.997 0 015.8 7.2V4.7zm7.3 12.486L10.914 15 17.4 8.514l2.185 2.186-6.486 6.486zM10.686 19.6H8.5v-2.185l1-1 2.186 2.185-1 1zm11.02-9.607l-3.598-3.6a1.003 1.003 0 00-1.414 0l-9.901 9.9A1.003 1.003 0 006.5 17v3.6a1 1 0 001 1h3.6a1 1 0 00.708-.293l9.899-9.9a.999.999 0 000-1.414z\"\n clip-rule=\"evenodd\" />\n</svg>";var reset="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-rotate-ccw\"><polyline points=\"1 4 1 10 7 10\"></polyline><path d=\"M3.51 15a9 9 0 1 0 2.13-9.36L1 10\"></path></svg>";var search="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-search\"><circle cx=\"11\" cy=\"11\" r=\"8\"></circle><line x1=\"21\" y1=\"21\" x2=\"16.65\" y2=\"16.65\"></line></svg>";var settings="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-settings\"><circle cx=\"12\" cy=\"12\" r=\"3\"></circle><path d=\"M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z\"></path></svg>";var share="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-share\"><path d=\"M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8\"></path><polyline points=\"16 6 12 2 8 6\"></polyline><line x1=\"12\" y1=\"2\" x2=\"12\" y2=\"15\"></line></svg>";var sliders="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-sliders\"><line x1=\"4\" y1=\"21\" x2=\"4\" y2=\"14\"></line><line x1=\"4\" y1=\"10\" x2=\"4\" y2=\"3\"></line><line x1=\"12\" y1=\"21\" x2=\"12\" y2=\"12\"></line><line x1=\"12\" y1=\"8\" x2=\"12\" y2=\"3\"></line><line x1=\"20\" y1=\"21\" x2=\"20\" y2=\"16\"></line><line x1=\"20\" y1=\"12\" x2=\"20\" y2=\"3\"></line><line x1=\"1\" y1=\"14\" x2=\"7\" y2=\"14\"></line><line x1=\"9\" y1=\"8\" x2=\"15\" y2=\"8\"></line><line x1=\"17\" y1=\"16\" x2=\"23\" y2=\"16\"></line></svg>";var smartzoom="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path fill=\"currentColor\"\n d=\"M7.593 15.164l-1.7-1a1 1 0 011.013-1.724l1.701.999a1.002 1.002 0 01-1.014 1.725zm7.288-8.6C17.989 7.917 20 10.926 20 14.401c0 4.676-3.504 8.372-8.151 8.6H5a1 1 0 110-1.999h6.8c3.514-.173 6.2-3.01 6.2-6.6 0-2.997-1.954-5.543-4.862-6.336a1 1 0 01-.598-1.475l1.076-1.817-2.545-1.42-3.695 6.37 2.561 1.43 1.103-1.862a1 1 0 011.082-.466c2.653.603 4.578 2.948 4.578 5.575 0 3.143-2.656 5.8-5.8 5.8a5.764 5.764 0 01-3.791-1.4H5a1 1 0 110-2h2.5c.265 0 .52.106.707.293a3.78 3.78 0 002.693 1.107c2.06 0 3.8-1.74 3.8-3.8 0-1.474-.953-2.815-2.345-3.406l-1.195 2.016a.998.998 0 01-1.347.363l-4.3-2.4A1.003 1.003 0 015.135 9.6l4.701-8.1a.996.996 0 011.352-.37l4.299 2.4a1.002 1.002 0 01.373 1.382l-.979 1.653z\" />\n</svg>";var sort="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M6 5v15m5-5l-5 5-5-5m17 4V4m-5 5l5-5 5 5\" />\n</svg>";var star="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-star\"><polygon points=\"12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2\"></polygon></svg>";var stethoscope="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\"\n stroke-linejoin=\"round\" stroke-width=\"2\" viewBox=\"0 0 24 24\">\n <path d=\"M13.1 2.5h2.3v4.6c0 3.2-2.6 5.7-5.7 5.7S4 10.2 4 7.1V2.5h2.3\" />\n <circle cx=\"17.7\" cy=\"15\" r=\"2.3\" />\n <path d=\"M17.7 17.5c0 2.2-1.8 4-4 4s-4-1.8-4-4m0 0v-4\" />\n</svg>";var tag="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-tag\"><path d=\"M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z\"></path><line x1=\"7\" y1=\"7\" x2=\"7.01\" y2=\"7\"></line></svg>";var twitter="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path fill=\"#55ACEE\"\n d=\"M11.653 7.276l.052.858-.867-.105C7.682 7.626 4.925 6.26 2.584 3.967L1.439 2.83l-.294.84C.52 5.544.919 7.522 2.22 8.853c.693.735.537.84-.66.402-.415-.14-.78-.245-.814-.192-.122.122.294 1.715.624 2.346.45.875 1.37 1.733 2.376 2.24l.85.403-1.006.018c-.971 0-1.006.017-.902.385.347 1.138 1.717 2.346 3.243 2.871l1.075.368-.937.56a9.764 9.764 0 01-4.647 1.296c-.78.017-1.422.087-1.422.14 0 .175 2.116 1.155 3.347 1.54 3.694 1.138 8.08.648 11.376-1.295 2.34-1.383 4.682-4.132 5.774-6.793.59-1.418 1.18-4.01 1.18-5.252 0-.806.052-.91 1.023-1.874.572-.56 1.11-1.172 1.214-1.348.173-.332.156-.332-.729-.035-1.474.526-1.682.456-.953-.332.537-.56 1.179-1.576 1.179-1.873 0-.053-.26.035-.555.192-.312.175-1.006.438-1.526.595l-.937.298-.85-.578c-.467-.315-1.127-.665-1.473-.77-.885-.245-2.237-.21-3.035.07-2.168.788-3.538 2.819-3.382 5.042z\" />\n</svg>";var unlock="<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 1C8.68629 1 6 3.68629 6 7V10H5C3.34315 10 2 11.3431 2 13V20C2 21.6569 3.34315 23 5 23H19C20.6569 23 22 21.6569 22 20V13C22 11.3431 20.6569 10 19 10H8V7C8 4.79086 9.79086 3 12 3C13.6387 3 15.0494 3.98556 15.6676 5.40037C15.8887 5.90646 16.4782 6.13747 16.9843 5.91635C17.4904 5.69523 17.7214 5.10572 17.5003 4.59963C16.5754 2.48263 14.4619 1 12 1ZM4 13C4 12.4477 4.44772 12 5 12H19C19.5523 12 20 12.4477 20 13V20C20 20.5523 19.5523 21 19 21H5C4.44772 21 4 20.5523 4 20V13Z\" fill=\"currentColor\"/>\n</svg>\n";var user="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-user\"><path d=\"M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2\"></path><circle cx=\"12\" cy=\"7\" r=\"4\"></circle></svg>";var users="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-users\"><path d=\"M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2\"></path><circle cx=\"9\" cy=\"7\" r=\"4\"></circle><path d=\"M23 21v-2a4 4 0 0 0-3-3.87\"></path><path d=\"M16 3.13a4 4 0 0 1 0 7.75\"></path></svg>";var watch="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-watch\"><circle cx=\"12\" cy=\"12\" r=\"7\"></circle><polyline points=\"12 9 12 12 13.5 13.5\"></polyline><path d=\"M16.51 17.35l-.35 3.83a2 2 0 0 1-2 1.82H9.83a2 2 0 0 1-2-1.82l-.35-3.83m.01-10.7l.35-3.83A2 2 0 0 1 9.83 1h4.35a2 2 0 0 1 2 1.82l.35 3.83\"></path></svg>";var wifi="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-wifi\"><path d=\"M5 12.55a11 11 0 0 1 14.08 0\"></path><path d=\"M1.42 9a16 16 0 0 1 21.16 0\"></path><path d=\"M8.53 16.11a6 6 0 0 1 6.95 0\"></path><line x1=\"12\" y1=\"20\" x2=\"12.01\" y2=\"20\"></line></svg>";var x="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-x\"><line x1=\"18\" y1=\"6\" x2=\"6\" y2=\"18\"></line><line x1=\"6\" y1=\"6\" x2=\"18\" y2=\"18\"></line></svg>";var table="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-table\"><path d=\"M9 3H5a2 2 0 0 0-2 2v4m6-6h10a2 2 0 0 1 2 2v4M9 3v18m0 0h10a2 2 0 0 0 2-2V9M9 21H5a2 2 0 0 1-2-2V9m0 0h18\"></path></svg>";var zap="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-zap\"><polygon points=\"13 2 3 14 12 14 11 22 21 10 12 10 13 2\"></polygon></svg>";var square="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-square\"><rect x=\"3\" y=\"3\" width=\"18\" height=\"18\" rx=\"2\" ry=\"2\"></rect></svg>";var icons = {"alert-circle":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-alert-circle\"><circle cx=\"12\" cy=\"12\" r=\"10\"></circle><line x1=\"12\" y1=\"8\" x2=\"12\" y2=\"12\"></line><line x1=\"12\" y1=\"16\" x2=\"12.01\" y2=\"16\"></line></svg>","alert-triangle":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-alert-triangle\"><path d=\"M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z\"></path><line x1=\"12\" y1=\"9\" x2=\"12\" y2=\"13\"></line><line x1=\"12\" y1=\"17\" x2=\"12.01\" y2=\"17\"></line></svg>","align-left":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-align-left\"><line x1=\"17\" y1=\"10\" x2=\"3\" y2=\"10\"></line><line x1=\"21\" y1=\"6\" x2=\"3\" y2=\"6\"></line><line x1=\"21\" y1=\"14\" x2=\"3\" y2=\"14\"></line><line x1=\"17\" y1=\"18\" x2=\"3\" y2=\"18\"></line></svg>",apple:apple,"arrow-down":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-arrow-down\"><line x1=\"12\" y1=\"5\" x2=\"12\" y2=\"19\"></line><polyline points=\"19 12 12 19 5 12\"></polyline></svg>","arrow-left":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-arrow-left\"><line x1=\"19\" y1=\"12\" x2=\"5\" y2=\"12\"></line><polyline points=\"12 19 5 12 12 5\"></polyline></svg>","arrow-right":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-arrow-right\"><line x1=\"5\" y1=\"12\" x2=\"19\" y2=\"12\"></line><polyline points=\"12 5 19 12 12 19\"></polyline></svg>","arrow-up":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-arrow-up\"><line x1=\"12\" y1=\"19\" x2=\"12\" y2=\"5\"></line><polyline points=\"5 12 12 5 19 12\"></polyline></svg>",article:article,auditor:auditor,award:award,"bar-chart-2":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-bar-chart-2\"><line x1=\"18\" y1=\"20\" x2=\"18\" y2=\"10\"></line><line x1=\"12\" y1=\"20\" x2=\"12\" y2=\"4\"></line><line x1=\"6\" y1=\"20\" x2=\"6\" y2=\"14\"></line></svg>",bell:bell,"bell-curve":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"17\" fill=\"none\"><path fill=\"currentColor\" d=\"M0 15v2h1.373v-.002c.993-.03 1.851-.317 2.58-.82.756-.522 1.324-1.241 1.769-2.03.857-1.522 1.359-3.5 1.818-5.31l.023-.092c.486-1.914.933-3.644 1.649-4.91.348-.616.733-1.069 1.167-1.367C10.801 2.179 11.317 2 12 2s1.2.179 1.62.469c.435.298.82.75 1.168 1.367.716 1.266 1.163 2.996 1.649 4.91l.023.091c.46 1.81.961 3.79 1.818 5.31.445.79 1.013 1.51 1.77 2.031.728.503 1.586.79 2.58.82V17H24v-2h-1.204c-.68 0-1.194-.178-1.613-.468-.432-.298-.815-.75-1.162-1.367-.714-1.266-1.16-2.996-1.646-4.911l-.019-.075c-.46-1.816-.964-3.802-1.827-5.327-.446-.79-1.016-1.51-1.775-2.031C13.983.29 13.067 0 12 0s-1.983.29-2.754.82c-.759.522-1.329 1.242-1.775 2.032-.863 1.525-1.367 3.511-1.827 5.327l-.02.075c-.485 1.915-.931 3.645-1.645 4.911-.347.617-.73 1.07-1.162 1.367-.42.29-.934.468-1.613.468H0Z\"/></svg>",book:book,bookmark:bookmark,"book-open":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-book-open\"><path d=\"M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z\"></path><path d=\"M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z\"></path></svg>",box:box,bubble:bubble,"bubble-check":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"currentColor\" stroke=\"currentColor\"\n viewBox=\"0 0 24 24\">\n <path stroke=\"none\"\n d=\"M2.803 12l1.752 1.168c.278.186.445.499.445.832v5c0 .552.449 1 1 1h14a1 1 0 001-1V5c0-.551-.448-1-1-1H6c-.551 0-1 .449-1 1v5c0 .334-.167.646-.445.832L2.803 12zM20 22H6c-1.654 0-3-1.345-3-3v-4.464L.446 12.832a1 1 0 010-1.664L3 9.465V5c0-1.654 1.346-3 3-3h14c1.655 0 3 1.346 3 3v14c0 1.655-1.345 3-3 3z\" />\n <path fill=\"none\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M17 9l-6 6-2.5-2.5\" />\n</svg>","bubble-image":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path fill=\"currentColor\"\n d=\"M15.9 7.7a1.301 1.301 0 010 2.6A1.302 1.302 0 0114.6 9c0-.717.583-1.3 1.3-1.3zm0 4.6c1.82 0 3.3-1.48 3.3-3.3 0-1.82-1.48-3.3-3.3-3.3A3.304 3.304 0 0012.6 9c0 1.82 1.48 3.3 3.3 3.3zM6 20c-.551 0-1-.448-1-1v-2.586l3-3 5.293 5.293a.997.997 0 001.414 0l2.263-2.263 3.233 3.515c-.068.015-.131.041-.203.041H6zm-3.197-8l1.752-1.168C4.833 10.646 5 10.334 5 10V5c0-.552.449-1 1-1h14a1 1 0 011 1v12.871l-3.264-3.548a1 1 0 00-1.443-.03L14 16.586l-5.293-5.294a1.03 1.03 0 00-1.414 0l-2.362 2.363a1.004 1.004 0 00-.376-.487L2.803 12zM20 2H6C4.346 2 3 3.345 3 5v4.464L.445 11.167a1.002 1.002 0 000 1.665L3 14.535V19c0 1.654 1.346 3 3 3h14c1.654 0 3-1.346 3-3V5c0-1.655-1.346-3-3-3z\" />\n</svg>","bubble-pill":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path fill=\"currentColor\"\n d=\"M20 2c1.654 0 3 1.345 3 3v14c0 1.654-1.346 3-3 3H6c-1.654 0-3-1.346-3-3v-4.465L.445 12.832a1.001 1.001 0 010-1.665L3 9.464V5c0-1.655 1.346-3 3-3h14zm1 17V5a1 1 0 00-1-1H6c-.551 0-1 .448-1 1v5c0 .334-.167.646-.445.832L2.803 12l1.752 1.168c.278.186.445.498.445.832v5c0 .552.449 1 1 1h14a1 1 0 001-1zM15.117 6.487a3.161 3.161 0 012.426 1.044c1.26 1.4 1.244 3.497-.036 4.776-.018.018-.041.023-.06.04-.016.018-.022.042-.04.06l-4 4c-.021.021-.05.028-.073.048-.024.027-.037.062-.065.088-.72.648-1.595.971-2.445.971a3.15 3.15 0 01-2.367-1.045c-1.26-1.399-1.243-3.497.036-4.777.018-.017.04-.023.06-.039.016-.019.022-.043.04-.06l4-4c.022-.022.05-.03.074-.05.025-.027.036-.06.065-.087a3.696 3.696 0 012.385-.969zm.976 4.405c.527-.526.512-1.416-.036-2.023a1.172 1.172 0 00-.9-.382 1.72 1.72 0 00-1.087.456c-.01.01-.023.011-.034.02-.011.013-.016.031-.03.044L12.715 10.3l1.986 1.985 1.293-1.292c.018-.018.04-.024.059-.039.017-.02.022-.044.04-.062zm-4.1 4.1l1.293-1.293-1.986-1.985-1.293 1.293c-.018.017-.04.023-.06.04-.015.018-.021.042-.04.06-.527.527-.511 1.415.037 2.024.554.615 1.437.42 1.987-.074.01-.009.022-.01.032-.019.012-.015.017-.032.03-.046z\" />\n</svg>","bubble-text":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path fill=\"currentColor\"\n d=\"M2.803 12l1.752 1.168c.278.186.445.499.445.832v5c0 .552.449 1 1 1h14a1 1 0 001-1V5c0-.551-.448-1-1-1H6c-.551 0-1 .449-1 1v5c0 .334-.167.646-.445.832L2.803 12zM20 22H6c-1.654 0-3-1.345-3-3v-4.464L.446 12.832a1 1 0 010-1.664L3 9.465V5c0-1.654 1.346-3 3-3h14c1.655 0 3 1.346 3 3v14c0 1.655-1.345 3-3 3zm-4.2-7H8a1 1 0 110-2h7.8a1 1 0 110 2zm2.2-4H8a1 1 0 010-2h10a1 1 0 110 2z\" />\n</svg>",bulb:bulb,calculator:calculator,charts:charts,check:check,"check-circle":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-check-circle\"><path d=\"M22 11.08V12a10 10 0 1 1-5.93-9.14\"></path><polyline points=\"22 4 12 14.01 9 11.01\"></polyline></svg>","check-square":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M8 11l3 3L22 3\" />\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M20 12v7a2 2 0 01-2 2H4a2 2 0 01-2-2V5a2 2 0 012-2h11\" />\n</svg>","checkmark-circle-filled":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"currentColor\" viewBox=\"0 0 24 24\">\n <path fill-rule=\"evenodd\"\n d=\"M12 23c6.075 0 11-4.925 11-11S18.075 1 12 1 1 5.925 1 12s4.925 11 11 11zm5.7-13.3l-7 7c-.2.2-.4.3-.7.3-.3 0-.5-.1-.7-.3l-3-3c-.4-.4-.4-1 0-1.4.4-.4 1-.4 1.4 0l2.3 2.3 6.3-6.3c.4-.4 1-.4 1.4 0 .4.4.4 1 0 1.4z\"\n clip-rule=\"evenodd\" />\n</svg>","chevron-down":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-chevron-down\"><polyline points=\"6 9 12 15 18 9\"></polyline></svg>","chevrons-down":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-chevrons-down\"><polyline points=\"7 13 12 18 17 13\"></polyline><polyline points=\"7 6 12 11 17 6\"></polyline></svg>","chevron-left":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-chevron-left\"><polyline points=\"15 18 9 12 15 6\"></polyline></svg>","chevron-right":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-chevron-right\"><polyline points=\"9 18 15 12 9 6\"></polyline></svg>","chevron-up":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-chevron-up\"><polyline points=\"18 15 12 9 6 15\"></polyline></svg>","chevrons-up":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-chevrons-up\"><polyline points=\"17 11 12 6 7 11\"></polyline><polyline points=\"17 18 12 13 7 18\"></polyline></svg>",circle:circle,clipboard:clipboard,coffee:coffee,collapse:collapse,compass:compass,copy:copy,"corner-down-left":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M9 10l-5 5 5 5\" />\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M20 4v7a4 4 0 01-4 4H4\" />\n</svg>","corner-down-right":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-corner-down-right\"><polyline points=\"15 10 20 15 15 20\"></polyline><path d=\"M4 4v7a4 4 0 0 0 4 4h12\"></path></svg>",download:download,"edit-3":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-edit-3\"><path d=\"M12 20h9\"></path><path d=\"M16.5 3.5a2.121 2.121 0 0 1 3 3L7 19l-4 1 1-4L16.5 3.5z\"></path></svg>","edit-3-filled":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"currentColor\" stroke=\"currentColor\"\n viewBox=\"0 0 24 24\">\n <path fill=\"none\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M12 20h9\" />\n <path stroke=\"none\"\n d=\"M18 2.83c-.695 0-1.362.276-1.854.768l-12.5 12.5a.5.5 0 00-.131.232l-1 4a.5.5 0 00.606.606l4-1a.5.5 0 00.233-.131l12.5-12.5A2.62 2.62 0 0018 2.83z\" />\n</svg>","edit-square":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M7.333 2.667H2.666A1.333 1.333 0 001.333 4v9.334a1.333 1.333 0 001.333 1.333H12a1.334 1.334 0 001.333-1.333V8.667\" />\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M12.333 1.667a1.414 1.414 0 112 2L8 10.001l-2.667.666L6 8l6.333-6.333z\" />\n</svg>",education:education,expand:expand,"external-link":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-external-link\"><path d=\"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6\"></path><polyline points=\"15 3 21 3 21 9\"></polyline><line x1=\"10\" y1=\"14\" x2=\"21\" y2=\"3\"></line></svg>",eye:eye,"eye-off":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-eye-off\"><path d=\"M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19m-6.72-1.07a3 3 0 1 1-4.24-4.24\"></path><line x1=\"1\" y1=\"1\" x2=\"23\" y2=\"23\"></line></svg>",facebook:facebook,"face-happy":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\"\n stroke-linejoin=\"round\" stroke-width=\"2\" viewBox=\"0 0 24 24\">\n <circle cx=\"12\" cy=\"12\" r=\"10\" />\n <path d=\"M16 14.7c-2.2 2.2-5.8 2.2-8 0m.9-5.3h0m6.2 0h0\" />\n</svg>","face-neutral":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\"\n stroke-linejoin=\"round\" stroke-width=\"2\" viewBox=\"0 0 24 24\">\n <path d=\"M8.9 9.4h0m6.2 0h0\" />\n <circle cx=\"12\" cy=\"12\" r=\"10\" />\n <path d=\"M16 15.5H8\" />\n</svg>","face-sad":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\"\n stroke-linejoin=\"round\" stroke-width=\"2\" viewBox=\"0 0 24 24\">\n <path d=\"M8.9 9.4h0m6.2 0h0\" />\n <circle cx=\"12\" cy=\"12\" r=\"10\" />\n <path d=\"M8 16.3c2.2-2.2 5.8-2.2 8 0\" />\n</svg>","file-text":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-file-text\"><path d=\"M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z\"></path><polyline points=\"14 2 14 8 20 8\"></polyline><line x1=\"16\" y1=\"13\" x2=\"8\" y2=\"13\"></line><line x1=\"16\" y1=\"17\" x2=\"8\" y2=\"17\"></line><polyline points=\"10 9 9 9 8 9\"></polyline></svg>",figma:figma,"filled-dot":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"currentColor\" viewBox=\"0 0 24 24\">\n <circle cx=\"12\" cy=\"12\" r=\"4\" />\n</svg>",film:film,filter:filter,flag:flag,"flag-filled":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"currentColor\" stroke=\"currentColor\"\n viewBox=\"0 0 24 24\">\n <path fill-rule=\"evenodd\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1v12z\" clip-rule=\"evenodd\" />\n <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M4 22v-7\" />\n</svg>",flask:flask,flowchart:flowchart,folder:folder,"folder-check-filled":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"currentColor\" viewBox=\"0 0 24 24\">\n <path fill-rule=\"evenodd\"\n d=\"M1 5a3 3 0 013-3h5a1 1 0 01.832.445L11.535 5H20a3 3 0 013 3v11a3 3 0 01-3 3H4a3 3 0 01-3-3V5zm15.707 5.707a1 1 0 00-1.414-1.414L10 14.586l-1.793-1.793a1 1 0 00-1.414 1.414l2.5 2.5a1 1 0 001.414 0l6-6z\"\n clip-rule=\"evenodd\" />\n</svg>","folder-plus":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-folder-plus\"><path d=\"M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z\"></path><line x1=\"12\" y1=\"11\" x2=\"12\" y2=\"17\"></line><line x1=\"9\" y1=\"14\" x2=\"15\" y2=\"14\"></line></svg>",gift:gift,grid:grid,google:google,"hammer-filled":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"currentColor\" viewBox=\"0 0 24 24\">\n <path\n d=\"M15.741 3.293l6 6c.48.479.743 1.103.743 1.757 0 .654-.263 1.278-.743 1.758l-1.399 1.399a2.482 2.482 0 01-1.758.738 2.479 2.479 0 01-1.756-.737l-1.711-1.693-8.582 8.581a.997.997 0 01-1.414 0l-2.828-2.828a1 1 0 010-1.415l8.559-8.559-3.621-3.583A.998.998 0 017.934 3h7.1c.266 0 .52.105.707.293z\" />\n</svg>",hash:hash,headphones:headphones,"help-circle":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-help-circle\"><circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3\"></path><line x1=\"12\" y1=\"17\" x2=\"12.01\" y2=\"17\"></line></svg>",home:home,illustration:illustration,image:image,"image-broken":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M1 3a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v7h-3v3h-3v3h-3v3H3a2 2 0 0 1-2-2V3Z\" clip-rule=\"evenodd\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M23 18v-4h-3v3h-3v3h-3v3h7a2 2 0 0 0 2-2v-3Z\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M6.5 8a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z\" clip-rule=\"evenodd\"/><path fill=\"currentColor\" d=\"M15.188 10.707a1 1 0 0 0 1.414-1.414l-1.414 1.414ZM13.895 8l.707-.707a1 1 0 0 0-1.383-.03l.676.737ZM2.324 17.263l-.737.676 1.352 1.474.737-.676-1.352-1.474Zm14.278-7.97-2-2-1.414 1.414 2 2 1.414-1.414Zm-3.383-2.03-10.895 10 1.352 1.474 10.895-10-1.352-1.474Z\"/></svg>",info:info,institution:institution,key:key,layers:layers,link:link,list:list,loader:loader,lock:lock,mail:mail,maximize:maximize,"maximize-2":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-maximize-2\"><polyline points=\"15 3 21 3 21 9\"></polyline><polyline points=\"9 21 3 21 3 15\"></polyline><line x1=\"21\" y1=\"3\" x2=\"14\" y2=\"10\"></line><line x1=\"3\" y1=\"21\" x2=\"10\" y2=\"14\"></line></svg>","med-imaging":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path stroke=\"currentColor\" stroke-width=\"2\"\n d=\"M7.5 3H5a2 2 0 00-2 2v2.5m18 0V5a2 2 0 00-2-2h-2.5m0 18H19a2 2 0 002-2v-2.5m-18 0V19a2 2 0 002 2h2.5m9-3v-2.5a2 2 0 00-2-2h-5a2 2 0 00-2 2V18\" />\n <path fill=\"currentColor\" d=\"M12 10.5a3 3 0 100-6 3 3 0 000 6z\" />\n</svg>",meditricks:meditricks,menu:menu,"message-circle":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\"\n stroke-linejoin=\"round\" stroke-width=\"2\" viewBox=\"0 0 24 24\">\n <path\n d=\"M21 11.5a8.38 8.38 0 01-.9 3.8 8.5 8.5 0 01-7.6 4.7 8.38 8.38 0 01-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 01-.9-3.8 8.5 8.5 0 014.7-7.6 8.38 8.38 0 013.8-.9h.5a8.48 8.48 0 018 8v.5z\" />\n</svg>",minus:minus,"more-horizontal":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-more-horizontal\"><circle cx=\"12\" cy=\"12\" r=\"1\"></circle><circle cx=\"19\" cy=\"12\" r=\"1\"></circle><circle cx=\"5\" cy=\"12\" r=\"1\"></circle></svg>","more-vertical":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-more-vertical\"><circle cx=\"12\" cy=\"12\" r=\"1\"></circle><circle cx=\"12\" cy=\"5\" r=\"1\"></circle><circle cx=\"12\" cy=\"19\" r=\"1\"></circle></svg>","no-fill":"<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<circle cx=\"12\" cy=\"12\" r=\"11\" stroke=\"currentColor\" stroke-width=\"2\"/>\n<line x1=\"20.1332\" y1=\"5.27396\" x2=\"3.63324\" y2=\"18.774\" stroke=\"currentColor\" stroke-width=\"2\"/>\n</svg>\n",percent:percent,pill:pill,"play-circle":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-play-circle\"><circle cx=\"12\" cy=\"12\" r=\"10\"></circle><polygon points=\"10 8 16 12 10 16 10 8\"></polygon></svg>","play-filled":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"currentColor\" viewBox=\"0 0 24 24\">\n <path fill-rule=\"evenodd\"\n d=\"M7.042 4.245a2 2 0 012.04.073l9.333 6a2 2 0 010 3.364l-9.333 6A2 2 0 016 18V6a2 2 0 011.042-1.755z\"\n clip-rule=\"evenodd\" />\n</svg>",plus:plus,"plus-circle":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-plus-circle\"><circle cx=\"12\" cy=\"12\" r=\"10\"></circle><line x1=\"12\" y1=\"8\" x2=\"12\" y2=\"16\"></line><line x1=\"8\" y1=\"12\" x2=\"16\" y2=\"12\"></line></svg>","plus-circle-filled":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"currentColor\" viewBox=\"0 0 24 24\">\n <path fill-rule=\"evenodd\"\n d=\"M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12zm11-5a1 1 0 011 1v3h3a1 1 0 110 2h-3v3a1 1 0 11-2 0v-3H8a1 1 0 110-2h3V8a1 1 0 011-1z\"\n clip-rule=\"evenodd\" />\n</svg>",quiz:quiz,reset:reset,"rotate-cw":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-rotate-cw\"><polyline points=\"23 4 23 10 17 10\"></polyline><path d=\"M20.49 15a9 9 0 1 1-2.12-9.36L23 10\"></path></svg>",search:search,"search-list":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M4 6h16m-5 6h5m-4 6h4\" />\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M7.125 19.5a4.375 4.375 0 100-8.75 4.375 4.375 0 000 8.75z\" clip-rule=\"evenodd\" />\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M13.25 21.25l-3.033-3.033\" />\n</svg>",settings:settings,share:share,"shopping-bag":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-shopping-bag\"><path d=\"M6 2L3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z\"></path><line x1=\"3\" y1=\"6\" x2=\"21\" y2=\"6\"></line><path d=\"M16 10a4 4 0 0 1-8 0\"></path></svg>","show-all":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.333\"\n d=\"M13.333 2H4c-.733 0-1.333.6-1.333 1.333v3.334L.667 8l2 1.333v3.334C2.667 13.4 3.267 14 4 14h9.333c.734 0 1.334-.6 1.334-1.333V3.333c0-.733-.6-1.333-1.334-1.333z\" />\n <path fill=\"currentColor\"\n d=\"M9.693 9.673H7.64l-.393 1.174H6L8.12 5.16h1.087l2.126 5.687h-1.246l-.394-1.174zm-1.74-.953h1.42L8.66 6.593 7.953 8.72z\" />\n</svg>",sliders:sliders,smartzoom:smartzoom,sort:sort,"sort-ascending":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\"><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"m6 11 4.94-6.06a1.5 1.5 0 0 1 2.12 0L18 11H6Z\" clip-rule=\"evenodd\"/><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"m18 13-4.94 6.06a1.5 1.5 0 0 1-2.12 0L6 13h12Z\" clip-rule=\"evenodd\" opacity=\".3\"/></svg>","sort-descending":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\"><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"m18 13-4.94 6.06a1.5 1.5 0 0 1-2.12 0L6 13h12Z\" clip-rule=\"evenodd\"/><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"m6 11 4.94-6.06a1.5 1.5 0 0 1 2.12 0L18 11H6Z\" clip-rule=\"evenodd\" opacity=\".3\"/></svg>","sort-neutral":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\"><g fill=\"currentColor\" opacity=\".3\"><path d=\"m18 11-4.94-6.06a1.5 1.5 0 0 0-2.12 0L6 11h12ZM6 13l4.94 6.06a1.5 1.5 0 0 0 2.12 0L18 13H6Z\"/></g></svg>",star:star,stethoscope:stethoscope,tag:tag,"text-zoom-reset":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"currentColor\" viewBox=\"0 0 24 24\">\n <path fill-rule=\"evenodd\"\n d=\"M12.509 18H9.454l-.9-2H4.447l-.9 2H1.354l4.234-9.41h1.824l3.56 7.91 4.607-10.89h1.842L22.663 18H20.49l-1.269-3h-5.444l-1.269 3zM6.5 11.437L7.654 14H5.347L6.5 11.437zM18.376 13L16.5 8.566 14.624 13h3.752z\"\n clip-rule=\"evenodd\" />\n</svg>","thumbs-down":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><path stroke-width=\"2\" fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M21 4.077A1.31 1.31 0 0 0 19.688 3H18v9h1.688A1.31 1.31 0 0 0 21 10.923V4.077Zm-5 8.71V3H5.709a1 1 0 0 0-1 .85l-1.38 9a1.001 1.001 0 0 0 1 1.15H10a1 1 0 0 1 1 1v4a2 2 0 0 0 1.392 1.906L16 12.788ZM17.65 14l-3.736 8.406A1 1 0 0 1 13 23a4 4 0 0 1-4-4v-3H4.345a3 3 0 0 1-2.994-3.45l1.38-9A3 3 0 0 1 5.725 1h13.937a3.31 3.31 0 0 1 3.329 2.866c.006.044.009.09.009.134v7c0 .045-.003.09-.009.134A3.31 3.31 0 0 1 19.661 14H17.65Z\" clip-rule=\"evenodd\"/></svg>","thumbs-up":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-thumbs-up\"><path d=\"M14 9V5a3 3 0 0 0-3-3l-4 9v11h11.28a2 2 0 0 0 2-1.7l1.38-9a2 2 0 0 0-2-2.3zM7 22H4a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h3\"></path></svg>","timer-off":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M6.848 6.88a8 8 0 1011.275 11.27M19.748 15A8 8 0 0010 5.252M15.5 9.5l-.5.5\" />\n <path stroke-width=\"2\" d=\"M12 5V2\" />\n <path stroke-linecap=\"round\" stroke-width=\"2\" d=\"M10 2h4\" />\n <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M4 4l17 17\" />\n</svg>","timer-on":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M12 21a8 8 0 100-16 8 8 0 000 16zm3-11l-3 3\" />\n <path stroke-width=\"2\" d=\"M12 5V2\" />\n <path stroke-linecap=\"round\" stroke-width=\"2\" d=\"M10 2h4\" />\n</svg>","trash-2":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-trash-2\"><polyline points=\"3 6 5 6 21 6\"></polyline><path d=\"M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2\"></path><line x1=\"10\" y1=\"11\" x2=\"10\" y2=\"17\"></line><line x1=\"14\" y1=\"11\" x2=\"14\" y2=\"17\"></line></svg>",twitter:twitter,unlock:unlock,user:user,users:users,watch:watch,"wifi-off":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-wifi-off\"><line x1=\"1\" y1=\"1\" x2=\"23\" y2=\"23\"></line><path d=\"M16.72 11.06A10.94 10.94 0 0 1 19 12.55\"></path><path d=\"M5 12.55a10.94 10.94 0 0 1 5.17-2.39\"></path><path d=\"M10.71 5.05A16 16 0 0 1 22.58 9\"></path><path d=\"M1.42 9a15.91 15.91 0 0 1 4.7-2.88\"></path><path d=\"M8.53 16.11a6 6 0 0 1 6.95 0\"></path><line x1=\"12\" y1=\"20\" x2=\"12.01\" y2=\"20\"></line></svg>",wifi:wifi,x:x,"x-circle-filled":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"currentColor\" viewBox=\"0 0 24 24\">\n <path fill-rule=\"evenodd\"\n d=\"M12 23c6.075 0 11-4.925 11-11S18.075 1 12 1 1 5.925 1 12s4.925 11 11 11zm4.707-15.707a1 1 0 010 1.414L13.414 12l3.293 3.293a1 1 0 01-1.414 1.414L12 13.414l-3.293 3.293a1 1 0 01-1.414-1.414L10.586 12 7.293 8.707a1 1 0 011.414-1.414L12 10.586l3.293-3.293a1 1 0 011.414 0z\"\n clip-rule=\"evenodd\" />\n</svg>",table:table,zap:zap,square:square};
6
6
 
7
7
  exports.apple = apple;
8
8
  exports.article = article;