@stoplight/ui-kit 0.0.0-beta-0.1

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 (1043) hide show
  1. package/AutoSizer/index.d.ts +3 -0
  2. package/AutoSizer/index.js +10 -0
  3. package/AutoSizer/index.js.map +1 -0
  4. package/CodeEditor/index.d.ts +12 -0
  5. package/CodeEditor/index.js +21 -0
  6. package/CodeEditor/index.js.map +1 -0
  7. package/CodeEditor/utils/highlightCode.d.ts +27 -0
  8. package/CodeEditor/utils/highlightCode.js +56 -0
  9. package/CodeEditor/utils/highlightCode.js.map +1 -0
  10. package/CodeViewer/index.d.ts +9 -0
  11. package/CodeViewer/index.js +34 -0
  12. package/CodeViewer/index.js.map +1 -0
  13. package/CodeViewer/utils/astToReact.d.ts +3 -0
  14. package/CodeViewer/utils/astToReact.js +17 -0
  15. package/CodeViewer/utils/astToReact.js.map +1 -0
  16. package/CodeViewer/utils/lineNumberify.d.ts +2 -0
  17. package/CodeViewer/utils/lineNumberify.js +97 -0
  18. package/CodeViewer/utils/lineNumberify.js.map +1 -0
  19. package/CodeViewer/utils/parseCode.d.ts +2 -0
  20. package/CodeViewer/utils/parseCode.js +68 -0
  21. package/CodeViewer/utils/parseCode.js.map +1 -0
  22. package/Dropdown/Dropdown.d.ts +9 -0
  23. package/Dropdown/Dropdown.js +30 -0
  24. package/Dropdown/Dropdown.js.map +1 -0
  25. package/FormButton/index.d.ts +10 -0
  26. package/FormButton/index.js +16 -0
  27. package/FormButton/index.js.map +1 -0
  28. package/FormError/index.d.ts +14 -0
  29. package/FormError/index.js +23 -0
  30. package/FormError/index.js.map +1 -0
  31. package/FormInput/index.d.ts +20 -0
  32. package/FormInput/index.js +39 -0
  33. package/FormInput/index.js.map +1 -0
  34. package/Icons/index.d.ts +1 -0
  35. package/Icons/index.js +5 -0
  36. package/Icons/index.js.map +1 -0
  37. package/LICENSE +190 -0
  38. package/README.md +106 -0
  39. package/ScrollContainer/index.d.ts +10 -0
  40. package/ScrollContainer/index.js +93 -0
  41. package/ScrollContainer/index.js.map +1 -0
  42. package/ScrollList/index.d.ts +19 -0
  43. package/ScrollList/index.js +37 -0
  44. package/ScrollList/index.js.map +1 -0
  45. package/SecretInput/index.d.ts +7 -0
  46. package/SecretInput/index.js +24 -0
  47. package/SecretInput/index.js.map +1 -0
  48. package/Select/index.d.ts +1 -0
  49. package/Select/index.js +5 -0
  50. package/Select/index.js.map +1 -0
  51. package/SimpleTabs/Tab.d.ts +6 -0
  52. package/SimpleTabs/Tab.js +15 -0
  53. package/SimpleTabs/Tab.js.map +1 -0
  54. package/SimpleTabs/TabList.d.ts +6 -0
  55. package/SimpleTabs/TabList.js +15 -0
  56. package/SimpleTabs/TabList.js.map +1 -0
  57. package/SimpleTabs/TabPanel.d.ts +6 -0
  58. package/SimpleTabs/TabPanel.js +15 -0
  59. package/SimpleTabs/TabPanel.js.map +1 -0
  60. package/SimpleTabs/index.d.ts +5 -0
  61. package/SimpleTabs/index.js +10 -0
  62. package/SimpleTabs/index.js.map +1 -0
  63. package/TableOfContents/index.d.ts +19 -0
  64. package/TableOfContents/index.js +87 -0
  65. package/TableOfContents/index.js.map +1 -0
  66. package/TableOfContents/types.d.ts +14 -0
  67. package/TableOfContents/types.js +3 -0
  68. package/TableOfContents/types.js.map +1 -0
  69. package/ThemeContainer/index.d.ts +7 -0
  70. package/ThemeContainer/index.js +12 -0
  71. package/ThemeContainer/index.js.map +1 -0
  72. package/_hooks/useIsMobile.d.ts +2 -0
  73. package/_hooks/useIsMobile.js +29 -0
  74. package/_hooks/useIsMobile.js.map +1 -0
  75. package/_hooks/useValidateSchema.d.ts +2 -0
  76. package/_hooks/useValidateSchema.js +26 -0
  77. package/_hooks/useValidateSchema.js.map +1 -0
  78. package/classes.d.ts +252 -0
  79. package/classes.js +7 -0
  80. package/classes.js.map +1 -0
  81. package/colors.d.ts +74 -0
  82. package/colors.js +79 -0
  83. package/colors.js.map +1 -0
  84. package/index.d.ts +12 -0
  85. package/index.js +18 -0
  86. package/index.js.map +1 -0
  87. package/package.json +44 -0
  88. package/styles/_ui-kit.scss +103 -0
  89. package/styles/blueprint/_base.scss +6 -0
  90. package/styles/blueprint/_icons.scss +39 -0
  91. package/styles/blueprint/_variables.scss +97 -0
  92. package/styles/common/_theme.scss +142 -0
  93. package/styles/common/_utils.scss +58 -0
  94. package/styles/common/_variables.scss +131 -0
  95. package/styles/components/Code/_base.scss +148 -0
  96. package/styles/components/Code/_theme-dark.scss +17 -0
  97. package/styles/components/Code/_theme-light.scss +17 -0
  98. package/styles/components/Dialog/_base.scss +9 -0
  99. package/styles/components/Dropdown/_base.scss +12 -0
  100. package/styles/components/FormGroup/_base.scss +5 -0
  101. package/styles/components/ScrollContainer/_base.scss +7 -0
  102. package/styles/components/SimpleTabs/_base.scss +115 -0
  103. package/styles/components/TableOfContents/_base.scss +55 -0
  104. package/styles/components/_base.scss +7 -0
  105. package/styles/fonts/icons-16.eot +0 -0
  106. package/styles/fonts/icons-16.ttf +0 -0
  107. package/styles/fonts/icons-16.woff +0 -0
  108. package/styles/fonts/icons-20.eot +0 -0
  109. package/styles/fonts/icons-20.ttf +0 -0
  110. package/styles/fonts/icons-20.woff +0 -0
  111. package/styles/fonts/icons.json +3236 -0
  112. package/styles/icons/16px/add-column-left.svg +12 -0
  113. package/styles/icons/16px/add-column-right.svg +12 -0
  114. package/styles/icons/16px/add-row-bottom.svg +12 -0
  115. package/styles/icons/16px/add-row-top.svg +12 -0
  116. package/styles/icons/16px/add-to-artifact.svg +15 -0
  117. package/styles/icons/16px/add-to-folder.svg +10 -0
  118. package/styles/icons/16px/add.svg +13 -0
  119. package/styles/icons/16px/airplane.svg +11 -0
  120. package/styles/icons/16px/align-center.svg +15 -0
  121. package/styles/icons/16px/align-justify.svg +15 -0
  122. package/styles/icons/16px/align-left.svg +15 -0
  123. package/styles/icons/16px/align-right.svg +15 -0
  124. package/styles/icons/16px/alignment-bottom.svg +12 -0
  125. package/styles/icons/16px/alignment-horizontal-center.svg +12 -0
  126. package/styles/icons/16px/alignment-left.svg +12 -0
  127. package/styles/icons/16px/alignment-right.svg +12 -0
  128. package/styles/icons/16px/alignment-top.svg +12 -0
  129. package/styles/icons/16px/alignment-vertical-center.svg +12 -0
  130. package/styles/icons/16px/annotation.svg +12 -0
  131. package/styles/icons/16px/application.svg +13 -0
  132. package/styles/icons/16px/applications.svg +15 -0
  133. package/styles/icons/16px/arrow-bottom-left.svg +12 -0
  134. package/styles/icons/16px/arrow-bottom-right.svg +12 -0
  135. package/styles/icons/16px/arrow-down.svg +16 -0
  136. package/styles/icons/16px/arrow-left.svg +13 -0
  137. package/styles/icons/16px/arrow-right.svg +13 -0
  138. package/styles/icons/16px/arrow-top-left.svg +12 -0
  139. package/styles/icons/16px/arrow-top-right.svg +12 -0
  140. package/styles/icons/16px/arrow-up.svg +16 -0
  141. package/styles/icons/16px/arrows-horizontal.svg +17 -0
  142. package/styles/icons/16px/arrows-vertical.svg +17 -0
  143. package/styles/icons/16px/asterisk.svg +14 -0
  144. package/styles/icons/16px/automatic-updates.svg +17 -0
  145. package/styles/icons/16px/badge.svg +13 -0
  146. package/styles/icons/16px/ban-circle.svg +11 -0
  147. package/styles/icons/16px/bank-account.svg +19 -0
  148. package/styles/icons/16px/barcode.svg +12 -0
  149. package/styles/icons/16px/blank.svg +5 -0
  150. package/styles/icons/16px/blocked-person.svg +19 -0
  151. package/styles/icons/16px/bold.svg +12 -0
  152. package/styles/icons/16px/book.svg +11 -0
  153. package/styles/icons/16px/bookmark.svg +13 -0
  154. package/styles/icons/16px/box.svg +13 -0
  155. package/styles/icons/16px/briefcase.svg +13 -0
  156. package/styles/icons/16px/build.svg +13 -0
  157. package/styles/icons/16px/calculator.svg +12 -0
  158. package/styles/icons/16px/calendar.svg +10 -0
  159. package/styles/icons/16px/camera.svg +13 -0
  160. package/styles/icons/16px/caret-down.svg +13 -0
  161. package/styles/icons/16px/caret-left.svg +12 -0
  162. package/styles/icons/16px/caret-right.svg +12 -0
  163. package/styles/icons/16px/caret-up.svg +13 -0
  164. package/styles/icons/16px/cell-tower.svg +19 -0
  165. package/styles/icons/16px/changes.svg +16 -0
  166. package/styles/icons/16px/chart.svg +16 -0
  167. package/styles/icons/16px/chat.svg +12 -0
  168. package/styles/icons/16px/chevron-backward.svg +12 -0
  169. package/styles/icons/16px/chevron-down.svg +12 -0
  170. package/styles/icons/16px/chevron-forward.svg +12 -0
  171. package/styles/icons/16px/chevron-left.svg +12 -0
  172. package/styles/icons/16px/chevron-right.svg +12 -0
  173. package/styles/icons/16px/chevron-up.svg +12 -0
  174. package/styles/icons/16px/circle-arrow-down.svg +13 -0
  175. package/styles/icons/16px/circle-arrow-left.svg +13 -0
  176. package/styles/icons/16px/circle-arrow-right.svg +13 -0
  177. package/styles/icons/16px/circle-arrow-up.svg +13 -0
  178. package/styles/icons/16px/circle.svg +15 -0
  179. package/styles/icons/16px/citation.svg +15 -0
  180. package/styles/icons/16px/clean.svg +10 -0
  181. package/styles/icons/16px/clipboard.svg +13 -0
  182. package/styles/icons/16px/cloud-download.svg +15 -0
  183. package/styles/icons/16px/cloud-upload.svg +15 -0
  184. package/styles/icons/16px/cloud.svg +11 -0
  185. package/styles/icons/16px/code-block.svg +15 -0
  186. package/styles/icons/16px/code.svg +16 -0
  187. package/styles/icons/16px/cog.svg +19 -0
  188. package/styles/icons/16px/collapse-all.svg +14 -0
  189. package/styles/icons/16px/column-layout.svg +11 -0
  190. package/styles/icons/16px/comment.svg +13 -0
  191. package/styles/icons/16px/comparison.svg +16 -0
  192. package/styles/icons/16px/compass.svg +9 -0
  193. package/styles/icons/16px/compressed.svg +14 -0
  194. package/styles/icons/16px/confirm.svg +15 -0
  195. package/styles/icons/16px/console.svg +9 -0
  196. package/styles/icons/16px/contrast.svg +17 -0
  197. package/styles/icons/16px/control.svg +12 -0
  198. package/styles/icons/16px/credit-card.svg +14 -0
  199. package/styles/icons/16px/cross.svg +13 -0
  200. package/styles/icons/16px/crown.svg +12 -0
  201. package/styles/icons/16px/cube-add.svg +9 -0
  202. package/styles/icons/16px/cube-remove.svg +9 -0
  203. package/styles/icons/16px/cube.svg +9 -0
  204. package/styles/icons/16px/curved-range-chart.svg +12 -0
  205. package/styles/icons/16px/cut.svg +14 -0
  206. package/styles/icons/16px/dashboard.svg +14 -0
  207. package/styles/icons/16px/database.svg +13 -0
  208. package/styles/icons/16px/delete.svg +16 -0
  209. package/styles/icons/16px/delta.svg +11 -0
  210. package/styles/icons/16px/derive-column.svg +28 -0
  211. package/styles/icons/16px/desktop.svg +12 -0
  212. package/styles/icons/16px/diagram-tree.svg +10 -0
  213. package/styles/icons/16px/direction-left.svg +11 -0
  214. package/styles/icons/16px/direction-right.svg +11 -0
  215. package/styles/icons/16px/disable.svg +13 -0
  216. package/styles/icons/16px/document-open.svg +12 -0
  217. package/styles/icons/16px/document-share.svg +13 -0
  218. package/styles/icons/16px/document.svg +12 -0
  219. package/styles/icons/16px/dollar.svg +24 -0
  220. package/styles/icons/16px/dot.svg +11 -0
  221. package/styles/icons/16px/double-caret-horizontal.svg +13 -0
  222. package/styles/icons/16px/double-caret-vertical.svg +12 -0
  223. package/styles/icons/16px/double-chevron-down.svg +14 -0
  224. package/styles/icons/16px/double-chevron-left.svg +14 -0
  225. package/styles/icons/16px/double-chevron-right.svg +14 -0
  226. package/styles/icons/16px/double-chevron-up.svg +14 -0
  227. package/styles/icons/16px/doughnut-chart.svg +11 -0
  228. package/styles/icons/16px/download.svg +14 -0
  229. package/styles/icons/16px/drag-handle-horizontal.svg +15 -0
  230. package/styles/icons/16px/drag-handle-vertical.svg +15 -0
  231. package/styles/icons/16px/draw.svg +18 -0
  232. package/styles/icons/16px/drive-time.svg +16 -0
  233. package/styles/icons/16px/duplicate.svg +12 -0
  234. package/styles/icons/16px/edit.svg +13 -0
  235. package/styles/icons/16px/eject.svg +12 -0
  236. package/styles/icons/16px/endorsed.svg +17 -0
  237. package/styles/icons/16px/envelope.svg +13 -0
  238. package/styles/icons/16px/eraser.svg +12 -0
  239. package/styles/icons/16px/error.svg +12 -0
  240. package/styles/icons/16px/euro.svg +19 -0
  241. package/styles/icons/16px/exchange.svg +18 -0
  242. package/styles/icons/16px/exclude-row.svg +14 -0
  243. package/styles/icons/16px/expand-all.svg +14 -0
  244. package/styles/icons/16px/export.svg +14 -0
  245. package/styles/icons/16px/eye-off.svg +20 -0
  246. package/styles/icons/16px/eye-on.svg +20 -0
  247. package/styles/icons/16px/eye-open.svg +12 -0
  248. package/styles/icons/16px/fast-backward.svg +13 -0
  249. package/styles/icons/16px/fast-forward.svg +13 -0
  250. package/styles/icons/16px/feed-subscribed.svg +17 -0
  251. package/styles/icons/16px/feed.svg +15 -0
  252. package/styles/icons/16px/film.svg +12 -0
  253. package/styles/icons/16px/filter-keep.svg +14 -0
  254. package/styles/icons/16px/filter-list.svg +14 -0
  255. package/styles/icons/16px/filter-remove.svg +15 -0
  256. package/styles/icons/16px/filter.svg +13 -0
  257. package/styles/icons/16px/flag.svg +13 -0
  258. package/styles/icons/16px/flame.svg +10 -0
  259. package/styles/icons/16px/flash.svg +20 -0
  260. package/styles/icons/16px/floppy-disk.svg +12 -0
  261. package/styles/icons/16px/flow-branch.svg +12 -0
  262. package/styles/icons/16px/flow-end.svg +12 -0
  263. package/styles/icons/16px/flow-linear.svg +12 -0
  264. package/styles/icons/16px/flow-review-branch.svg +12 -0
  265. package/styles/icons/16px/flow-review.svg +12 -0
  266. package/styles/icons/16px/flows.svg +13 -0
  267. package/styles/icons/16px/folder-close.svg +12 -0
  268. package/styles/icons/16px/folder-new.svg +10 -0
  269. package/styles/icons/16px/folder-open.svg +12 -0
  270. package/styles/icons/16px/folder-shared-open.svg +15 -0
  271. package/styles/icons/16px/folder-shared.svg +15 -0
  272. package/styles/icons/16px/follower.svg +20 -0
  273. package/styles/icons/16px/following.svg +20 -0
  274. package/styles/icons/16px/font.svg +13 -0
  275. package/styles/icons/16px/fork.svg +15 -0
  276. package/styles/icons/16px/form.svg +18 -0
  277. package/styles/icons/16px/full-circle.svg +7 -0
  278. package/styles/icons/16px/full-stacked-chart.svg +14 -0
  279. package/styles/icons/16px/fullscreen.svg +17 -0
  280. package/styles/icons/16px/function.svg +27 -0
  281. package/styles/icons/16px/gantt-chart.svg +13 -0
  282. package/styles/icons/16px/geolocation.svg +11 -0
  283. package/styles/icons/16px/geosearch.svg +28 -0
  284. package/styles/icons/16px/git-branch.svg +15 -0
  285. package/styles/icons/16px/git-commit.svg +12 -0
  286. package/styles/icons/16px/git-merge.svg +14 -0
  287. package/styles/icons/16px/git-new-branch.svg +15 -0
  288. package/styles/icons/16px/git-pull.svg +16 -0
  289. package/styles/icons/16px/git-push.svg +13 -0
  290. package/styles/icons/16px/git-repo.svg +12 -0
  291. package/styles/icons/16px/glass.svg +11 -0
  292. package/styles/icons/16px/globe-network.svg +12 -0
  293. package/styles/icons/16px/globe.svg +38 -0
  294. package/styles/icons/16px/graph-remove.svg +17 -0
  295. package/styles/icons/16px/graph.svg +15 -0
  296. package/styles/icons/16px/grid-view.svg +11 -0
  297. package/styles/icons/16px/grid.svg +14 -0
  298. package/styles/icons/16px/group-objects.svg +13 -0
  299. package/styles/icons/16px/grouped-bar-chart.svg +13 -0
  300. package/styles/icons/16px/hand-down.svg +13 -0
  301. package/styles/icons/16px/hand-left.svg +13 -0
  302. package/styles/icons/16px/hand-right.svg +13 -0
  303. package/styles/icons/16px/hand-up.svg +13 -0
  304. package/styles/icons/16px/hand.svg +14 -0
  305. package/styles/icons/16px/header-one.svg +11 -0
  306. package/styles/icons/16px/header-two.svg +19 -0
  307. package/styles/icons/16px/header.svg +11 -0
  308. package/styles/icons/16px/headset.svg +13 -0
  309. package/styles/icons/16px/heart-broken.svg +16 -0
  310. package/styles/icons/16px/heart.svg +15 -0
  311. package/styles/icons/16px/heat-grid.svg +12 -0
  312. package/styles/icons/16px/heatmap.svg +15 -0
  313. package/styles/icons/16px/help.svg +16 -0
  314. package/styles/icons/16px/helper-management.svg +16 -0
  315. package/styles/icons/16px/highlight.svg +12 -0
  316. package/styles/icons/16px/history.svg +15 -0
  317. package/styles/icons/16px/home.svg +14 -0
  318. package/styles/icons/16px/horizontal-bar-chart-asc.svg +12 -0
  319. package/styles/icons/16px/horizontal-bar-chart-desc.svg +13 -0
  320. package/styles/icons/16px/horizontal-bar-chart.svg +13 -0
  321. package/styles/icons/16px/horizontal-distribution.svg +12 -0
  322. package/styles/icons/16px/id-number.svg +21 -0
  323. package/styles/icons/16px/image-rotate-left.svg +15 -0
  324. package/styles/icons/16px/image-rotate-right.svg +14 -0
  325. package/styles/icons/16px/import.svg +14 -0
  326. package/styles/icons/16px/inbox-filtered.svg +11 -0
  327. package/styles/icons/16px/inbox-geo.svg +11 -0
  328. package/styles/icons/16px/inbox-search.svg +11 -0
  329. package/styles/icons/16px/inbox-update.svg +11 -0
  330. package/styles/icons/16px/inbox.svg +13 -0
  331. package/styles/icons/16px/info-sign.svg +12 -0
  332. package/styles/icons/16px/inner-join.svg +14 -0
  333. package/styles/icons/16px/insert.svg +16 -0
  334. package/styles/icons/16px/intersection.svg +14 -0
  335. package/styles/icons/16px/ip-address.svg +13 -0
  336. package/styles/icons/16px/issue-closed.svg +12 -0
  337. package/styles/icons/16px/issue-new.svg +12 -0
  338. package/styles/icons/16px/issue.svg +12 -0
  339. package/styles/icons/16px/italic.svg +13 -0
  340. package/styles/icons/16px/join-table.svg +12 -0
  341. package/styles/icons/16px/key-backspace.svg +15 -0
  342. package/styles/icons/16px/key-command.svg +14 -0
  343. package/styles/icons/16px/key-control.svg +12 -0
  344. package/styles/icons/16px/key-delete.svg +15 -0
  345. package/styles/icons/16px/key-enter.svg +12 -0
  346. package/styles/icons/16px/key-escape.svg +13 -0
  347. package/styles/icons/16px/key-option.svg +12 -0
  348. package/styles/icons/16px/key-shift.svg +12 -0
  349. package/styles/icons/16px/key-tab.svg +15 -0
  350. package/styles/icons/16px/key.svg +15 -0
  351. package/styles/icons/16px/known-vehicle.svg +28 -0
  352. package/styles/icons/16px/label.svg +12 -0
  353. package/styles/icons/16px/layer.svg +13 -0
  354. package/styles/icons/16px/layers.svg +18 -0
  355. package/styles/icons/16px/layout-auto.svg +16 -0
  356. package/styles/icons/16px/layout-balloon.svg +16 -0
  357. package/styles/icons/16px/layout-circle.svg +22 -0
  358. package/styles/icons/16px/layout-grid.svg +16 -0
  359. package/styles/icons/16px/layout-group-by.svg +15 -0
  360. package/styles/icons/16px/layout-hierarchy.svg +17 -0
  361. package/styles/icons/16px/layout-linear.svg +12 -0
  362. package/styles/icons/16px/layout-skew-grid.svg +15 -0
  363. package/styles/icons/16px/layout-sorted-clusters.svg +13 -0
  364. package/styles/icons/16px/layout.svg +18 -0
  365. package/styles/icons/16px/left-join.svg +13 -0
  366. package/styles/icons/16px/lifesaver.svg +9 -0
  367. package/styles/icons/16px/lightbulb.svg +13 -0
  368. package/styles/icons/16px/link.svg +19 -0
  369. package/styles/icons/16px/list-columns.svg +12 -0
  370. package/styles/icons/16px/list-detail-view.svg +13 -0
  371. package/styles/icons/16px/list.svg +13 -0
  372. package/styles/icons/16px/locate.svg +16 -0
  373. package/styles/icons/16px/lock.svg +8 -0
  374. package/styles/icons/16px/log-in.svg +13 -0
  375. package/styles/icons/16px/log-out.svg +13 -0
  376. package/styles/icons/16px/manual.svg +17 -0
  377. package/styles/icons/16px/manually-entered-data.svg +14 -0
  378. package/styles/icons/16px/map-create.svg +17 -0
  379. package/styles/icons/16px/map-marker.svg +13 -0
  380. package/styles/icons/16px/map.svg +17 -0
  381. package/styles/icons/16px/maximize.svg +15 -0
  382. package/styles/icons/16px/media.svg +13 -0
  383. package/styles/icons/16px/menu-closed.svg +15 -0
  384. package/styles/icons/16px/menu-open.svg +14 -0
  385. package/styles/icons/16px/menu.svg +12 -0
  386. package/styles/icons/16px/merge-columns.svg +17 -0
  387. package/styles/icons/16px/merge-links.svg +15 -0
  388. package/styles/icons/16px/minimize.svg +15 -0
  389. package/styles/icons/16px/minus.svg +11 -0
  390. package/styles/icons/16px/mobile-phone.svg +11 -0
  391. package/styles/icons/16px/mobile-video.svg +12 -0
  392. package/styles/icons/16px/moon.svg +9 -0
  393. package/styles/icons/16px/more.svg +11 -0
  394. package/styles/icons/16px/mountain.svg +10 -0
  395. package/styles/icons/16px/move.svg +17 -0
  396. package/styles/icons/16px/mugshot.svg +18 -0
  397. package/styles/icons/16px/multi-select.svg +13 -0
  398. package/styles/icons/16px/music.svg +12 -0
  399. package/styles/icons/16px/new-grid-item.svg +16 -0
  400. package/styles/icons/16px/new-link.svg +13 -0
  401. package/styles/icons/16px/new-object.svg +17 -0
  402. package/styles/icons/16px/new-person.svg +18 -0
  403. package/styles/icons/16px/new-prescription.svg +19 -0
  404. package/styles/icons/16px/new-text-box.svg +15 -0
  405. package/styles/icons/16px/ninja.svg +13 -0
  406. package/styles/icons/16px/notifications-updated.svg +10 -0
  407. package/styles/icons/16px/notifications.svg +12 -0
  408. package/styles/icons/16px/numbered-list.svg +21 -0
  409. package/styles/icons/16px/numerical.svg +29 -0
  410. package/styles/icons/16px/office.svg +12 -0
  411. package/styles/icons/16px/offline.svg +12 -0
  412. package/styles/icons/16px/oil-field.svg +14 -0
  413. package/styles/icons/16px/one-column.svg +13 -0
  414. package/styles/icons/16px/outdated.svg +10 -0
  415. package/styles/icons/16px/page-layout.svg +12 -0
  416. package/styles/icons/16px/panel-stats.svg +15 -0
  417. package/styles/icons/16px/panel-table.svg +9 -0
  418. package/styles/icons/16px/paperclip.svg +16 -0
  419. package/styles/icons/16px/paragraph.svg +9 -0
  420. package/styles/icons/16px/path-search.svg +20 -0
  421. package/styles/icons/16px/path.svg +12 -0
  422. package/styles/icons/16px/pause.svg +11 -0
  423. package/styles/icons/16px/people.svg +25 -0
  424. package/styles/icons/16px/percentage.svg +14 -0
  425. package/styles/icons/16px/person.svg +19 -0
  426. package/styles/icons/16px/phone.svg +15 -0
  427. package/styles/icons/16px/pie-chart.svg +10 -0
  428. package/styles/icons/16px/pin.svg +12 -0
  429. package/styles/icons/16px/pivot-table.svg +16 -0
  430. package/styles/icons/16px/pivot.svg +14 -0
  431. package/styles/icons/16px/play.svg +12 -0
  432. package/styles/icons/16px/plus.svg +11 -0
  433. package/styles/icons/16px/polygon-filter.svg +15 -0
  434. package/styles/icons/16px/power.svg +12 -0
  435. package/styles/icons/16px/predictive-analysis.svg +33 -0
  436. package/styles/icons/16px/prescription.svg +15 -0
  437. package/styles/icons/16px/presentation.svg +14 -0
  438. package/styles/icons/16px/print.svg +13 -0
  439. package/styles/icons/16px/projects.svg +13 -0
  440. package/styles/icons/16px/properties.svg +15 -0
  441. package/styles/icons/16px/property.svg +15 -0
  442. package/styles/icons/16px/publish-function.svg +30 -0
  443. package/styles/icons/16px/pulse.svg +13 -0
  444. package/styles/icons/16px/random.svg +17 -0
  445. package/styles/icons/16px/record.svg +10 -0
  446. package/styles/icons/16px/redo.svg +13 -0
  447. package/styles/icons/16px/refresh.svg +15 -0
  448. package/styles/icons/16px/regression-chart.svg +13 -0
  449. package/styles/icons/16px/remove-column-left.svg +12 -0
  450. package/styles/icons/16px/remove-column-right.svg +12 -0
  451. package/styles/icons/16px/remove-column.svg +14 -0
  452. package/styles/icons/16px/remove-row-bottom.svg +12 -0
  453. package/styles/icons/16px/remove-row-top.svg +12 -0
  454. package/styles/icons/16px/remove.svg +13 -0
  455. package/styles/icons/16px/repeat.svg +13 -0
  456. package/styles/icons/16px/resolve.svg +17 -0
  457. package/styles/icons/16px/rig.svg +14 -0
  458. package/styles/icons/16px/right-join.svg +13 -0
  459. package/styles/icons/16px/ring.svg +11 -0
  460. package/styles/icons/16px/rotate-document.svg +14 -0
  461. package/styles/icons/16px/rotate-page.svg +13 -0
  462. package/styles/icons/16px/satellite.svg +17 -0
  463. package/styles/icons/16px/saved.svg +13 -0
  464. package/styles/icons/16px/scatter-plot.svg +13 -0
  465. package/styles/icons/16px/search-around.svg +20 -0
  466. package/styles/icons/16px/search-template.svg +16 -0
  467. package/styles/icons/16px/search-text.svg +14 -0
  468. package/styles/icons/16px/search.svg +13 -0
  469. package/styles/icons/16px/segmented-control.svg +10 -0
  470. package/styles/icons/16px/select.svg +15 -0
  471. package/styles/icons/16px/selection.svg +12 -0
  472. package/styles/icons/16px/send-to-graph.svg +16 -0
  473. package/styles/icons/16px/send-to-map.svg +16 -0
  474. package/styles/icons/16px/send-to.svg +18 -0
  475. package/styles/icons/16px/series-add.svg +9 -0
  476. package/styles/icons/16px/series-configuration.svg +17 -0
  477. package/styles/icons/16px/series-derived.svg +10 -0
  478. package/styles/icons/16px/series-filtered.svg +10 -0
  479. package/styles/icons/16px/series-search.svg +15 -0
  480. package/styles/icons/16px/settings.svg +14 -0
  481. package/styles/icons/16px/share.svg +14 -0
  482. package/styles/icons/16px/shield.svg +10 -0
  483. package/styles/icons/16px/shop.svg +13 -0
  484. package/styles/icons/16px/shopping-cart.svg +13 -0
  485. package/styles/icons/16px/sim-card.svg +12 -0
  486. package/styles/icons/16px/slash.svg +11 -0
  487. package/styles/icons/16px/small-cross.svg +13 -0
  488. package/styles/icons/16px/small-minus.svg +11 -0
  489. package/styles/icons/16px/small-plus.svg +11 -0
  490. package/styles/icons/16px/small-tick.svg +12 -0
  491. package/styles/icons/16px/snowflake.svg +12 -0
  492. package/styles/icons/16px/social-media.svg +19 -0
  493. package/styles/icons/16px/sort-alphabetical-desc.svg +14 -0
  494. package/styles/icons/16px/sort-alphabetical.svg +14 -0
  495. package/styles/icons/16px/sort-asc.svg +15 -0
  496. package/styles/icons/16px/sort-desc.svg +15 -0
  497. package/styles/icons/16px/sort-numerical-desc.svg +26 -0
  498. package/styles/icons/16px/sort-numerical.svg +25 -0
  499. package/styles/icons/16px/sort.svg +15 -0
  500. package/styles/icons/16px/split-columns.svg +17 -0
  501. package/styles/icons/16px/square.svg +12 -0
  502. package/styles/icons/16px/stacked-chart.svg +13 -0
  503. package/styles/icons/16px/star-empty.svg +8 -0
  504. package/styles/icons/16px/star.svg +8 -0
  505. package/styles/icons/16px/step-backward.svg +12 -0
  506. package/styles/icons/16px/step-chart.svg +12 -0
  507. package/styles/icons/16px/step-forward.svg +12 -0
  508. package/styles/icons/16px/stop.svg +11 -0
  509. package/styles/icons/16px/strikethrough.svg +21 -0
  510. package/styles/icons/16px/style.svg +13 -0
  511. package/styles/icons/16px/swap-horizontal.svg +16 -0
  512. package/styles/icons/16px/swap-vertical.svg +16 -0
  513. package/styles/icons/16px/symbol-circle.svg +10 -0
  514. package/styles/icons/16px/symbol-cross.svg +11 -0
  515. package/styles/icons/16px/symbol-diamond.svg +12 -0
  516. package/styles/icons/16px/symbol-square.svg +11 -0
  517. package/styles/icons/16px/symbol-triangle-down.svg +11 -0
  518. package/styles/icons/16px/symbol-triangle-up.svg +12 -0
  519. package/styles/icons/16px/tag.svg +10 -0
  520. package/styles/icons/16px/take-action.svg +15 -0
  521. package/styles/icons/16px/taxi.svg +12 -0
  522. package/styles/icons/16px/text-highlight.svg +13 -0
  523. package/styles/icons/16px/th-derived.svg +17 -0
  524. package/styles/icons/16px/th-filtered.svg +10 -0
  525. package/styles/icons/16px/th-list.svg +15 -0
  526. package/styles/icons/16px/th.svg +16 -0
  527. package/styles/icons/16px/thumbs-down.svg +17 -0
  528. package/styles/icons/16px/thumbs-up.svg +17 -0
  529. package/styles/icons/16px/tick-circle.svg +10 -0
  530. package/styles/icons/16px/tick.svg +12 -0
  531. package/styles/icons/16px/time.svg +13 -0
  532. package/styles/icons/16px/timeline-area-chart.svg +12 -0
  533. package/styles/icons/16px/timeline-bar-chart.svg +13 -0
  534. package/styles/icons/16px/timeline-events.svg +18 -0
  535. package/styles/icons/16px/timeline-line-chart.svg +14 -0
  536. package/styles/icons/16px/tint.svg +11 -0
  537. package/styles/icons/16px/torch.svg +13 -0
  538. package/styles/icons/16px/train.svg +7 -0
  539. package/styles/icons/16px/translate.svg +16 -0
  540. package/styles/icons/16px/trash.svg +15 -0
  541. package/styles/icons/16px/tree.svg +12 -0
  542. package/styles/icons/16px/trending-down.svg +13 -0
  543. package/styles/icons/16px/trending-up.svg +13 -0
  544. package/styles/icons/16px/two-columns.svg +14 -0
  545. package/styles/icons/16px/underline.svg +12 -0
  546. package/styles/icons/16px/undo.svg +13 -0
  547. package/styles/icons/16px/ungroup-objects.svg +12 -0
  548. package/styles/icons/16px/unknown-vehicle.svg +34 -0
  549. package/styles/icons/16px/unlock.svg +13 -0
  550. package/styles/icons/16px/unpin.svg +13 -0
  551. package/styles/icons/16px/unresolve.svg +18 -0
  552. package/styles/icons/16px/updated.svg +10 -0
  553. package/styles/icons/16px/upload.svg +12 -0
  554. package/styles/icons/16px/user.svg +28 -0
  555. package/styles/icons/16px/variable.svg +24 -0
  556. package/styles/icons/16px/vertical-bar-chart-asc.svg +12 -0
  557. package/styles/icons/16px/vertical-bar-chart-desc.svg +12 -0
  558. package/styles/icons/16px/vertical-distribution.svg +12 -0
  559. package/styles/icons/16px/video.svg +11 -0
  560. package/styles/icons/16px/volume-down.svg +12 -0
  561. package/styles/icons/16px/volume-off.svg +11 -0
  562. package/styles/icons/16px/volume-up.svg +14 -0
  563. package/styles/icons/16px/walk.svg +10 -0
  564. package/styles/icons/16px/warning-sign.svg +13 -0
  565. package/styles/icons/16px/waterfall-chart.svg +13 -0
  566. package/styles/icons/16px/widget-button.svg +12 -0
  567. package/styles/icons/16px/widget-footer.svg +7 -0
  568. package/styles/icons/16px/widget-header.svg +7 -0
  569. package/styles/icons/16px/widget.svg +14 -0
  570. package/styles/icons/16px/wrench.svg +12 -0
  571. package/styles/icons/16px/zoom-in.svg +15 -0
  572. package/styles/icons/16px/zoom-out.svg +14 -0
  573. package/styles/icons/16px/zoom-to-fit.svg +21 -0
  574. package/styles/icons/20px/add-column-left.svg +12 -0
  575. package/styles/icons/20px/add-column-right.svg +12 -0
  576. package/styles/icons/20px/add-row-bottom.svg +12 -0
  577. package/styles/icons/20px/add-row-top.svg +12 -0
  578. package/styles/icons/20px/add-to-artifact.svg +15 -0
  579. package/styles/icons/20px/add-to-folder.svg +10 -0
  580. package/styles/icons/20px/add.svg +14 -0
  581. package/styles/icons/20px/airplane.svg +11 -0
  582. package/styles/icons/20px/align-center.svg +15 -0
  583. package/styles/icons/20px/align-justify.svg +15 -0
  584. package/styles/icons/20px/align-left.svg +15 -0
  585. package/styles/icons/20px/align-right.svg +15 -0
  586. package/styles/icons/20px/alignment-bottom.svg +12 -0
  587. package/styles/icons/20px/alignment-horizontal-center.svg +12 -0
  588. package/styles/icons/20px/alignment-left.svg +12 -0
  589. package/styles/icons/20px/alignment-right.svg +12 -0
  590. package/styles/icons/20px/alignment-top.svg +12 -0
  591. package/styles/icons/20px/alignment-vertical-center.svg +12 -0
  592. package/styles/icons/20px/annotation.svg +12 -0
  593. package/styles/icons/20px/application.svg +13 -0
  594. package/styles/icons/20px/applications.svg +15 -0
  595. package/styles/icons/20px/arrow-bottom-left.svg +12 -0
  596. package/styles/icons/20px/arrow-bottom-right.svg +12 -0
  597. package/styles/icons/20px/arrow-down.svg +16 -0
  598. package/styles/icons/20px/arrow-left.svg +13 -0
  599. package/styles/icons/20px/arrow-right.svg +13 -0
  600. package/styles/icons/20px/arrow-top-left.svg +12 -0
  601. package/styles/icons/20px/arrow-top-right.svg +12 -0
  602. package/styles/icons/20px/arrow-up.svg +16 -0
  603. package/styles/icons/20px/arrows-horizontal.svg +17 -0
  604. package/styles/icons/20px/arrows-vertical.svg +17 -0
  605. package/styles/icons/20px/asterisk.svg +14 -0
  606. package/styles/icons/20px/automatic-updates.svg +17 -0
  607. package/styles/icons/20px/badge.svg +13 -0
  608. package/styles/icons/20px/ban-circle.svg +11 -0
  609. package/styles/icons/20px/bank-account.svg +17 -0
  610. package/styles/icons/20px/barcode.svg +13 -0
  611. package/styles/icons/20px/blank.svg +5 -0
  612. package/styles/icons/20px/blocked-person.svg +19 -0
  613. package/styles/icons/20px/bold.svg +12 -0
  614. package/styles/icons/20px/book.svg +11 -0
  615. package/styles/icons/20px/bookmark.svg +11 -0
  616. package/styles/icons/20px/box.svg +13 -0
  617. package/styles/icons/20px/briefcase.svg +13 -0
  618. package/styles/icons/20px/build.svg +13 -0
  619. package/styles/icons/20px/calculator.svg +12 -0
  620. package/styles/icons/20px/calendar.svg +10 -0
  621. package/styles/icons/20px/camera.svg +13 -0
  622. package/styles/icons/20px/caret-down.svg +12 -0
  623. package/styles/icons/20px/caret-left.svg +13 -0
  624. package/styles/icons/20px/caret-right.svg +13 -0
  625. package/styles/icons/20px/caret-up.svg +13 -0
  626. package/styles/icons/20px/cell-tower.svg +19 -0
  627. package/styles/icons/20px/changes.svg +16 -0
  628. package/styles/icons/20px/chart.svg +16 -0
  629. package/styles/icons/20px/chat.svg +13 -0
  630. package/styles/icons/20px/chevron-backward.svg +12 -0
  631. package/styles/icons/20px/chevron-down.svg +12 -0
  632. package/styles/icons/20px/chevron-forward.svg +12 -0
  633. package/styles/icons/20px/chevron-left.svg +12 -0
  634. package/styles/icons/20px/chevron-right.svg +12 -0
  635. package/styles/icons/20px/chevron-up.svg +12 -0
  636. package/styles/icons/20px/circle-arrow-down.svg +13 -0
  637. package/styles/icons/20px/circle-arrow-left.svg +13 -0
  638. package/styles/icons/20px/circle-arrow-right.svg +14 -0
  639. package/styles/icons/20px/circle-arrow-up.svg +13 -0
  640. package/styles/icons/20px/circle.svg +15 -0
  641. package/styles/icons/20px/citation.svg +12 -0
  642. package/styles/icons/20px/clean.svg +10 -0
  643. package/styles/icons/20px/clipboard.svg +10 -0
  644. package/styles/icons/20px/cloud-download.svg +15 -0
  645. package/styles/icons/20px/cloud-upload.svg +15 -0
  646. package/styles/icons/20px/cloud.svg +11 -0
  647. package/styles/icons/20px/code-block.svg +15 -0
  648. package/styles/icons/20px/code.svg +16 -0
  649. package/styles/icons/20px/cog.svg +18 -0
  650. package/styles/icons/20px/collapse-all.svg +14 -0
  651. package/styles/icons/20px/column-layout.svg +11 -0
  652. package/styles/icons/20px/comment.svg +13 -0
  653. package/styles/icons/20px/comparison.svg +17 -0
  654. package/styles/icons/20px/compass.svg +9 -0
  655. package/styles/icons/20px/compressed.svg +14 -0
  656. package/styles/icons/20px/confirm.svg +15 -0
  657. package/styles/icons/20px/console.svg +10 -0
  658. package/styles/icons/20px/contrast.svg +17 -0
  659. package/styles/icons/20px/control.svg +12 -0
  660. package/styles/icons/20px/credit-card.svg +14 -0
  661. package/styles/icons/20px/cross.svg +13 -0
  662. package/styles/icons/20px/crown.svg +12 -0
  663. package/styles/icons/20px/cube-add.svg +9 -0
  664. package/styles/icons/20px/cube-remove.svg +9 -0
  665. package/styles/icons/20px/cube.svg +9 -0
  666. package/styles/icons/20px/curved-range-chart.svg +13 -0
  667. package/styles/icons/20px/cut.svg +14 -0
  668. package/styles/icons/20px/dashboard.svg +15 -0
  669. package/styles/icons/20px/database.svg +14 -0
  670. package/styles/icons/20px/delete.svg +15 -0
  671. package/styles/icons/20px/delta.svg +11 -0
  672. package/styles/icons/20px/derive-column.svg +29 -0
  673. package/styles/icons/20px/desktop.svg +12 -0
  674. package/styles/icons/20px/diagram-tree.svg +10 -0
  675. package/styles/icons/20px/direction-left.svg +11 -0
  676. package/styles/icons/20px/direction-right.svg +11 -0
  677. package/styles/icons/20px/disable.svg +13 -0
  678. package/styles/icons/20px/document-open.svg +12 -0
  679. package/styles/icons/20px/document-share.svg +14 -0
  680. package/styles/icons/20px/document.svg +12 -0
  681. package/styles/icons/20px/dollar.svg +23 -0
  682. package/styles/icons/20px/dot.svg +11 -0
  683. package/styles/icons/20px/double-caret-horizontal.svg +13 -0
  684. package/styles/icons/20px/double-caret-vertical.svg +13 -0
  685. package/styles/icons/20px/double-chevron-down.svg +14 -0
  686. package/styles/icons/20px/double-chevron-left.svg +14 -0
  687. package/styles/icons/20px/double-chevron-right.svg +14 -0
  688. package/styles/icons/20px/double-chevron-up.svg +14 -0
  689. package/styles/icons/20px/doughnut-chart.svg +11 -0
  690. package/styles/icons/20px/download.svg +14 -0
  691. package/styles/icons/20px/drag-handle-horizontal.svg +15 -0
  692. package/styles/icons/20px/drag-handle-vertical.svg +15 -0
  693. package/styles/icons/20px/draw.svg +18 -0
  694. package/styles/icons/20px/drive-time.svg +18 -0
  695. package/styles/icons/20px/duplicate.svg +12 -0
  696. package/styles/icons/20px/edit.svg +13 -0
  697. package/styles/icons/20px/eject.svg +12 -0
  698. package/styles/icons/20px/endorsed.svg +17 -0
  699. package/styles/icons/20px/envelope.svg +13 -0
  700. package/styles/icons/20px/eraser.svg +12 -0
  701. package/styles/icons/20px/error.svg +12 -0
  702. package/styles/icons/20px/euro.svg +19 -0
  703. package/styles/icons/20px/exchange.svg +17 -0
  704. package/styles/icons/20px/exclude-row.svg +15 -0
  705. package/styles/icons/20px/expand-all.svg +14 -0
  706. package/styles/icons/20px/export.svg +14 -0
  707. package/styles/icons/20px/eye-off.svg +21 -0
  708. package/styles/icons/20px/eye-on.svg +20 -0
  709. package/styles/icons/20px/eye-open.svg +12 -0
  710. package/styles/icons/20px/fast-backward.svg +13 -0
  711. package/styles/icons/20px/fast-forward.svg +13 -0
  712. package/styles/icons/20px/feed-subscribed.svg +17 -0
  713. package/styles/icons/20px/feed.svg +15 -0
  714. package/styles/icons/20px/film.svg +12 -0
  715. package/styles/icons/20px/filter-keep.svg +13 -0
  716. package/styles/icons/20px/filter-list.svg +14 -0
  717. package/styles/icons/20px/filter-remove.svg +15 -0
  718. package/styles/icons/20px/filter.svg +13 -0
  719. package/styles/icons/20px/flag.svg +13 -0
  720. package/styles/icons/20px/flame.svg +10 -0
  721. package/styles/icons/20px/flash.svg +20 -0
  722. package/styles/icons/20px/floppy-disk.svg +12 -0
  723. package/styles/icons/20px/flow-branch.svg +12 -0
  724. package/styles/icons/20px/flow-end.svg +12 -0
  725. package/styles/icons/20px/flow-linear.svg +12 -0
  726. package/styles/icons/20px/flow-review-branch.svg +12 -0
  727. package/styles/icons/20px/flow-review.svg +12 -0
  728. package/styles/icons/20px/flows.svg +13 -0
  729. package/styles/icons/20px/folder-close.svg +12 -0
  730. package/styles/icons/20px/folder-new.svg +10 -0
  731. package/styles/icons/20px/folder-open.svg +13 -0
  732. package/styles/icons/20px/folder-shared-open.svg +15 -0
  733. package/styles/icons/20px/folder-shared.svg +15 -0
  734. package/styles/icons/20px/follower.svg +20 -0
  735. package/styles/icons/20px/following.svg +20 -0
  736. package/styles/icons/20px/font.svg +13 -0
  737. package/styles/icons/20px/fork.svg +16 -0
  738. package/styles/icons/20px/form.svg +18 -0
  739. package/styles/icons/20px/full-circle.svg +7 -0
  740. package/styles/icons/20px/full-stacked-chart.svg +14 -0
  741. package/styles/icons/20px/fullscreen.svg +16 -0
  742. package/styles/icons/20px/function.svg +27 -0
  743. package/styles/icons/20px/gantt-chart.svg +13 -0
  744. package/styles/icons/20px/geolocation.svg +11 -0
  745. package/styles/icons/20px/geosearch.svg +28 -0
  746. package/styles/icons/20px/git-branch.svg +15 -0
  747. package/styles/icons/20px/git-commit.svg +12 -0
  748. package/styles/icons/20px/git-merge.svg +14 -0
  749. package/styles/icons/20px/git-new-branch.svg +15 -0
  750. package/styles/icons/20px/git-pull.svg +17 -0
  751. package/styles/icons/20px/git-push.svg +14 -0
  752. package/styles/icons/20px/git-repo.svg +12 -0
  753. package/styles/icons/20px/glass.svg +11 -0
  754. package/styles/icons/20px/globe-network.svg +12 -0
  755. package/styles/icons/20px/globe.svg +36 -0
  756. package/styles/icons/20px/graph-remove.svg +17 -0
  757. package/styles/icons/20px/graph.svg +16 -0
  758. package/styles/icons/20px/grid-view.svg +11 -0
  759. package/styles/icons/20px/grid.svg +14 -0
  760. package/styles/icons/20px/group-objects.svg +13 -0
  761. package/styles/icons/20px/grouped-bar-chart.svg +14 -0
  762. package/styles/icons/20px/hand-down.svg +14 -0
  763. package/styles/icons/20px/hand-left.svg +14 -0
  764. package/styles/icons/20px/hand-right.svg +14 -0
  765. package/styles/icons/20px/hand-up.svg +14 -0
  766. package/styles/icons/20px/hand.svg +20 -0
  767. package/styles/icons/20px/header-one.svg +12 -0
  768. package/styles/icons/20px/header-two.svg +19 -0
  769. package/styles/icons/20px/header.svg +11 -0
  770. package/styles/icons/20px/headset.svg +13 -0
  771. package/styles/icons/20px/heart-broken.svg +16 -0
  772. package/styles/icons/20px/heart.svg +16 -0
  773. package/styles/icons/20px/heat-grid.svg +12 -0
  774. package/styles/icons/20px/heatmap.svg +12 -0
  775. package/styles/icons/20px/help.svg +12 -0
  776. package/styles/icons/20px/helper-management.svg +16 -0
  777. package/styles/icons/20px/highlight.svg +13 -0
  778. package/styles/icons/20px/history.svg +14 -0
  779. package/styles/icons/20px/home.svg +14 -0
  780. package/styles/icons/20px/horizontal-bar-chart-asc.svg +13 -0
  781. package/styles/icons/20px/horizontal-bar-chart-desc.svg +13 -0
  782. package/styles/icons/20px/horizontal-bar-chart.svg +13 -0
  783. package/styles/icons/20px/horizontal-distribution.svg +12 -0
  784. package/styles/icons/20px/id-number.svg +23 -0
  785. package/styles/icons/20px/image-rotate-left.svg +14 -0
  786. package/styles/icons/20px/image-rotate-right.svg +14 -0
  787. package/styles/icons/20px/import.svg +14 -0
  788. package/styles/icons/20px/inbox-filtered.svg +11 -0
  789. package/styles/icons/20px/inbox-geo.svg +11 -0
  790. package/styles/icons/20px/inbox-search.svg +11 -0
  791. package/styles/icons/20px/inbox-update.svg +11 -0
  792. package/styles/icons/20px/inbox.svg +13 -0
  793. package/styles/icons/20px/info-sign.svg +12 -0
  794. package/styles/icons/20px/inner-join.svg +14 -0
  795. package/styles/icons/20px/insert.svg +16 -0
  796. package/styles/icons/20px/intersection.svg +14 -0
  797. package/styles/icons/20px/ip-address.svg +13 -0
  798. package/styles/icons/20px/issue-closed.svg +12 -0
  799. package/styles/icons/20px/issue-new.svg +12 -0
  800. package/styles/icons/20px/issue.svg +12 -0
  801. package/styles/icons/20px/italic.svg +13 -0
  802. package/styles/icons/20px/join-table.svg +12 -0
  803. package/styles/icons/20px/key-backspace.svg +15 -0
  804. package/styles/icons/20px/key-command.svg +15 -0
  805. package/styles/icons/20px/key-control.svg +12 -0
  806. package/styles/icons/20px/key-delete.svg +15 -0
  807. package/styles/icons/20px/key-enter.svg +13 -0
  808. package/styles/icons/20px/key-escape.svg +13 -0
  809. package/styles/icons/20px/key-option.svg +12 -0
  810. package/styles/icons/20px/key-shift.svg +12 -0
  811. package/styles/icons/20px/key-tab.svg +15 -0
  812. package/styles/icons/20px/key.svg +13 -0
  813. package/styles/icons/20px/known-vehicle.svg +25 -0
  814. package/styles/icons/20px/label.svg +12 -0
  815. package/styles/icons/20px/layer.svg +11 -0
  816. package/styles/icons/20px/layers.svg +14 -0
  817. package/styles/icons/20px/layout-auto.svg +17 -0
  818. package/styles/icons/20px/layout-balloon.svg +16 -0
  819. package/styles/icons/20px/layout-circle.svg +21 -0
  820. package/styles/icons/20px/layout-grid.svg +53 -0
  821. package/styles/icons/20px/layout-group-by.svg +48 -0
  822. package/styles/icons/20px/layout-hierarchy.svg +17 -0
  823. package/styles/icons/20px/layout-linear.svg +12 -0
  824. package/styles/icons/20px/layout-skew-grid.svg +48 -0
  825. package/styles/icons/20px/layout-sorted-clusters.svg +13 -0
  826. package/styles/icons/20px/layout.svg +18 -0
  827. package/styles/icons/20px/left-join.svg +13 -0
  828. package/styles/icons/20px/lifesaver.svg +9 -0
  829. package/styles/icons/20px/lightbulb.svg +13 -0
  830. package/styles/icons/20px/link.svg +18 -0
  831. package/styles/icons/20px/list-columns.svg +12 -0
  832. package/styles/icons/20px/list-detail-view.svg +14 -0
  833. package/styles/icons/20px/list.svg +24 -0
  834. package/styles/icons/20px/locate.svg +16 -0
  835. package/styles/icons/20px/lock.svg +8 -0
  836. package/styles/icons/20px/log-in.svg +13 -0
  837. package/styles/icons/20px/log-out.svg +13 -0
  838. package/styles/icons/20px/manual.svg +20 -0
  839. package/styles/icons/20px/manually-entered-data.svg +15 -0
  840. package/styles/icons/20px/map-create.svg +16 -0
  841. package/styles/icons/20px/map-marker.svg +12 -0
  842. package/styles/icons/20px/map.svg +15 -0
  843. package/styles/icons/20px/maximize.svg +14 -0
  844. package/styles/icons/20px/media.svg +12 -0
  845. package/styles/icons/20px/menu-closed.svg +15 -0
  846. package/styles/icons/20px/menu-open.svg +15 -0
  847. package/styles/icons/20px/menu.svg +12 -0
  848. package/styles/icons/20px/merge-columns.svg +17 -0
  849. package/styles/icons/20px/merge-links.svg +13 -0
  850. package/styles/icons/20px/minimize.svg +14 -0
  851. package/styles/icons/20px/minus.svg +11 -0
  852. package/styles/icons/20px/mobile-phone.svg +11 -0
  853. package/styles/icons/20px/mobile-video.svg +12 -0
  854. package/styles/icons/20px/moon.svg +9 -0
  855. package/styles/icons/20px/more.svg +11 -0
  856. package/styles/icons/20px/mountain.svg +10 -0
  857. package/styles/icons/20px/move.svg +18 -0
  858. package/styles/icons/20px/mugshot.svg +19 -0
  859. package/styles/icons/20px/multi-select.svg +13 -0
  860. package/styles/icons/20px/music.svg +12 -0
  861. package/styles/icons/20px/new-grid-item.svg +16 -0
  862. package/styles/icons/20px/new-link.svg +13 -0
  863. package/styles/icons/20px/new-object.svg +17 -0
  864. package/styles/icons/20px/new-person.svg +19 -0
  865. package/styles/icons/20px/new-prescription.svg +16 -0
  866. package/styles/icons/20px/new-text-box.svg +16 -0
  867. package/styles/icons/20px/ninja.svg +13 -0
  868. package/styles/icons/20px/notifications-updated.svg +10 -0
  869. package/styles/icons/20px/notifications.svg +13 -0
  870. package/styles/icons/20px/numbered-list.svg +21 -0
  871. package/styles/icons/20px/numerical.svg +29 -0
  872. package/styles/icons/20px/office.svg +12 -0
  873. package/styles/icons/20px/offline.svg +12 -0
  874. package/styles/icons/20px/oil-field.svg +14 -0
  875. package/styles/icons/20px/one-column.svg +13 -0
  876. package/styles/icons/20px/outdated.svg +10 -0
  877. package/styles/icons/20px/page-layout.svg +12 -0
  878. package/styles/icons/20px/panel-stats.svg +12 -0
  879. package/styles/icons/20px/panel-table.svg +9 -0
  880. package/styles/icons/20px/paperclip.svg +16 -0
  881. package/styles/icons/20px/paragraph.svg +9 -0
  882. package/styles/icons/20px/path-search.svg +24 -0
  883. package/styles/icons/20px/path.svg +12 -0
  884. package/styles/icons/20px/pause.svg +11 -0
  885. package/styles/icons/20px/people.svg +26 -0
  886. package/styles/icons/20px/percentage.svg +14 -0
  887. package/styles/icons/20px/person.svg +18 -0
  888. package/styles/icons/20px/phone.svg +15 -0
  889. package/styles/icons/20px/pie-chart.svg +10 -0
  890. package/styles/icons/20px/pin.svg +13 -0
  891. package/styles/icons/20px/pivot-table.svg +16 -0
  892. package/styles/icons/20px/pivot.svg +14 -0
  893. package/styles/icons/20px/play.svg +12 -0
  894. package/styles/icons/20px/plus.svg +11 -0
  895. package/styles/icons/20px/polygon-filter.svg +15 -0
  896. package/styles/icons/20px/power.svg +12 -0
  897. package/styles/icons/20px/predictive-analysis.svg +33 -0
  898. package/styles/icons/20px/prescription.svg +14 -0
  899. package/styles/icons/20px/presentation.svg +14 -0
  900. package/styles/icons/20px/print.svg +13 -0
  901. package/styles/icons/20px/projects.svg +13 -0
  902. package/styles/icons/20px/properties.svg +14 -0
  903. package/styles/icons/20px/property.svg +14 -0
  904. package/styles/icons/20px/publish-function.svg +30 -0
  905. package/styles/icons/20px/pulse.svg +13 -0
  906. package/styles/icons/20px/random.svg +17 -0
  907. package/styles/icons/20px/record.svg +10 -0
  908. package/styles/icons/20px/redo.svg +13 -0
  909. package/styles/icons/20px/refresh.svg +15 -0
  910. package/styles/icons/20px/regression-chart.svg +13 -0
  911. package/styles/icons/20px/remove-column-left.svg +12 -0
  912. package/styles/icons/20px/remove-column-right.svg +12 -0
  913. package/styles/icons/20px/remove-column.svg +14 -0
  914. package/styles/icons/20px/remove-row-bottom.svg +12 -0
  915. package/styles/icons/20px/remove-row-top.svg +11 -0
  916. package/styles/icons/20px/remove.svg +13 -0
  917. package/styles/icons/20px/repeat.svg +12 -0
  918. package/styles/icons/20px/resolve.svg +17 -0
  919. package/styles/icons/20px/rig.svg +14 -0
  920. package/styles/icons/20px/right-join.svg +13 -0
  921. package/styles/icons/20px/ring.svg +11 -0
  922. package/styles/icons/20px/rotate-document.svg +14 -0
  923. package/styles/icons/20px/rotate-page.svg +14 -0
  924. package/styles/icons/20px/satellite.svg +15 -0
  925. package/styles/icons/20px/saved.svg +13 -0
  926. package/styles/icons/20px/scatter-plot.svg +13 -0
  927. package/styles/icons/20px/search-around.svg +30 -0
  928. package/styles/icons/20px/search-template.svg +16 -0
  929. package/styles/icons/20px/search-text.svg +16 -0
  930. package/styles/icons/20px/search.svg +13 -0
  931. package/styles/icons/20px/segmented-control.svg +10 -0
  932. package/styles/icons/20px/select.svg +14 -0
  933. package/styles/icons/20px/selection.svg +11 -0
  934. package/styles/icons/20px/send-to-graph.svg +17 -0
  935. package/styles/icons/20px/send-to-map.svg +15 -0
  936. package/styles/icons/20px/send-to.svg +18 -0
  937. package/styles/icons/20px/series-add.svg +9 -0
  938. package/styles/icons/20px/series-configuration.svg +17 -0
  939. package/styles/icons/20px/series-derived.svg +11 -0
  940. package/styles/icons/20px/series-filtered.svg +11 -0
  941. package/styles/icons/20px/series-search.svg +14 -0
  942. package/styles/icons/20px/settings.svg +14 -0
  943. package/styles/icons/20px/share.svg +13 -0
  944. package/styles/icons/20px/shield.svg +10 -0
  945. package/styles/icons/20px/shop.svg +14 -0
  946. package/styles/icons/20px/shopping-cart.svg +13 -0
  947. package/styles/icons/20px/sim-card.svg +12 -0
  948. package/styles/icons/20px/slash.svg +11 -0
  949. package/styles/icons/20px/small-cross.svg +13 -0
  950. package/styles/icons/20px/small-minus.svg +11 -0
  951. package/styles/icons/20px/small-plus.svg +11 -0
  952. package/styles/icons/20px/small-tick.svg +12 -0
  953. package/styles/icons/20px/snowflake.svg +12 -0
  954. package/styles/icons/20px/social-media.svg +12 -0
  955. package/styles/icons/20px/sort-alphabetical-desc.svg +14 -0
  956. package/styles/icons/20px/sort-alphabetical.svg +14 -0
  957. package/styles/icons/20px/sort-asc.svg +15 -0
  958. package/styles/icons/20px/sort-desc.svg +15 -0
  959. package/styles/icons/20px/sort-numerical-desc.svg +25 -0
  960. package/styles/icons/20px/sort-numerical.svg +26 -0
  961. package/styles/icons/20px/sort.svg +15 -0
  962. package/styles/icons/20px/split-columns.svg +16 -0
  963. package/styles/icons/20px/square.svg +12 -0
  964. package/styles/icons/20px/stacked-chart.svg +13 -0
  965. package/styles/icons/20px/star-empty.svg +8 -0
  966. package/styles/icons/20px/star.svg +8 -0
  967. package/styles/icons/20px/step-backward.svg +12 -0
  968. package/styles/icons/20px/step-chart.svg +12 -0
  969. package/styles/icons/20px/step-forward.svg +12 -0
  970. package/styles/icons/20px/stop.svg +11 -0
  971. package/styles/icons/20px/strikethrough.svg +22 -0
  972. package/styles/icons/20px/style.svg +13 -0
  973. package/styles/icons/20px/swap-horizontal.svg +16 -0
  974. package/styles/icons/20px/swap-vertical.svg +16 -0
  975. package/styles/icons/20px/symbol-circle.svg +10 -0
  976. package/styles/icons/20px/symbol-cross.svg +11 -0
  977. package/styles/icons/20px/symbol-diamond.svg +13 -0
  978. package/styles/icons/20px/symbol-square.svg +11 -0
  979. package/styles/icons/20px/symbol-triangle-down.svg +11 -0
  980. package/styles/icons/20px/symbol-triangle-up.svg +12 -0
  981. package/styles/icons/20px/tag.svg +10 -0
  982. package/styles/icons/20px/take-action.svg +15 -0
  983. package/styles/icons/20px/taxi.svg +12 -0
  984. package/styles/icons/20px/text-highlight.svg +14 -0
  985. package/styles/icons/20px/th-derived.svg +18 -0
  986. package/styles/icons/20px/th-filtered.svg +10 -0
  987. package/styles/icons/20px/th-list.svg +15 -0
  988. package/styles/icons/20px/th.svg +16 -0
  989. package/styles/icons/20px/thumbs-down.svg +17 -0
  990. package/styles/icons/20px/thumbs-up.svg +17 -0
  991. package/styles/icons/20px/tick-circle.svg +10 -0
  992. package/styles/icons/20px/tick.svg +12 -0
  993. package/styles/icons/20px/time.svg +13 -0
  994. package/styles/icons/20px/timeline-area-chart.svg +12 -0
  995. package/styles/icons/20px/timeline-bar-chart.svg +13 -0
  996. package/styles/icons/20px/timeline-events.svg +18 -0
  997. package/styles/icons/20px/timeline-line-chart.svg +14 -0
  998. package/styles/icons/20px/tint.svg +11 -0
  999. package/styles/icons/20px/torch.svg +13 -0
  1000. package/styles/icons/20px/train.svg +9 -0
  1001. package/styles/icons/20px/translate.svg +17 -0
  1002. package/styles/icons/20px/trash.svg +15 -0
  1003. package/styles/icons/20px/tree.svg +12 -0
  1004. package/styles/icons/20px/trending-down.svg +13 -0
  1005. package/styles/icons/20px/trending-up.svg +13 -0
  1006. package/styles/icons/20px/two-columns.svg +14 -0
  1007. package/styles/icons/20px/underline.svg +12 -0
  1008. package/styles/icons/20px/undo.svg +13 -0
  1009. package/styles/icons/20px/ungroup-objects.svg +12 -0
  1010. package/styles/icons/20px/unknown-vehicle.svg +33 -0
  1011. package/styles/icons/20px/unlock.svg +12 -0
  1012. package/styles/icons/20px/unpin.svg +13 -0
  1013. package/styles/icons/20px/unresolve.svg +20 -0
  1014. package/styles/icons/20px/updated.svg +10 -0
  1015. package/styles/icons/20px/upload.svg +13 -0
  1016. package/styles/icons/20px/user.svg +28 -0
  1017. package/styles/icons/20px/variable.svg +24 -0
  1018. package/styles/icons/20px/vertical-bar-chart-asc.svg +13 -0
  1019. package/styles/icons/20px/vertical-bar-chart-desc.svg +13 -0
  1020. package/styles/icons/20px/vertical-distribution.svg +12 -0
  1021. package/styles/icons/20px/video.svg +11 -0
  1022. package/styles/icons/20px/volume-down.svg +12 -0
  1023. package/styles/icons/20px/volume-off.svg +11 -0
  1024. package/styles/icons/20px/volume-up.svg +14 -0
  1025. package/styles/icons/20px/walk.svg +11 -0
  1026. package/styles/icons/20px/warning-sign.svg +13 -0
  1027. package/styles/icons/20px/waterfall-chart.svg +14 -0
  1028. package/styles/icons/20px/widget-button.svg +13 -0
  1029. package/styles/icons/20px/widget-footer.svg +7 -0
  1030. package/styles/icons/20px/widget-header.svg +7 -0
  1031. package/styles/icons/20px/widget.svg +14 -0
  1032. package/styles/icons/20px/wrench.svg +12 -0
  1033. package/styles/icons/20px/zoom-in.svg +15 -0
  1034. package/styles/icons/20px/zoom-out.svg +14 -0
  1035. package/styles/icons/20px/zoom-to-fit.svg +21 -0
  1036. package/styles/tailwind/_base.scss +59117 -0
  1037. package/styles/tailwind/tailwind.config.js +410 -0
  1038. package/types.d.ts +3 -0
  1039. package/types.js +3 -0
  1040. package/types.js.map +1 -0
  1041. package/withErrorBoundary.d.ts +104 -0
  1042. package/withErrorBoundary.js +52 -0
  1043. package/withErrorBoundary.js.map +1 -0
@@ -0,0 +1,3236 @@
1
+ [
2
+ {
3
+ "displayName": "Blank",
4
+ "iconName": "blank",
5
+ "tags": "empty, placeholder",
6
+ "group": "miscellaneous",
7
+ "content": "\\e900"
8
+ },
9
+ {
10
+ "displayName": "Style",
11
+ "iconName": "style",
12
+ "tags": "visual style, editor",
13
+ "group": "editor",
14
+ "content": "\\e601"
15
+ },
16
+ {
17
+ "displayName": "Align: left",
18
+ "iconName": "align-left",
19
+ "tags": "text flow, alignment, justification, range, flush left",
20
+ "group": "editor",
21
+ "content": "\\e602"
22
+ },
23
+ {
24
+ "displayName": "Align: center",
25
+ "iconName": "align-center",
26
+ "tags": "text flow, alignment, justification, range, centered",
27
+ "group": "editor",
28
+ "content": "\\e603"
29
+ },
30
+ {
31
+ "displayName": "Align: right",
32
+ "iconName": "align-right",
33
+ "tags": "text flow, alignment, justification, range, flush right",
34
+ "group": "editor",
35
+ "content": "\\e604"
36
+ },
37
+ {
38
+ "displayName": "Align: justify",
39
+ "iconName": "align-justify",
40
+ "tags": "text flow, alignment, justification, range, justified",
41
+ "group": "editor",
42
+ "content": "\\e605"
43
+ },
44
+ {
45
+ "displayName": "Bold",
46
+ "iconName": "bold",
47
+ "tags": "typography, text, font style, weight, bold",
48
+ "group": "editor",
49
+ "content": "\\e606"
50
+ },
51
+ {
52
+ "displayName": "Italic",
53
+ "iconName": "italic",
54
+ "tags": "typography, text, font style, italic, cursive",
55
+ "group": "editor",
56
+ "content": "\\e607"
57
+ },
58
+ {
59
+ "displayName": "Underline",
60
+ "iconName": "underline",
61
+ "tags": "typography, text, font style, underline, underscore",
62
+ "group": "editor",
63
+ "content": "\\2381"
64
+ },
65
+ {
66
+ "displayName": "Search around",
67
+ "iconName": "search-around",
68
+ "tags": "search, exploration, information, area, graph",
69
+ "group": "action",
70
+ "content": "\\e608"
71
+ },
72
+ {
73
+ "displayName": "Remove from graph",
74
+ "iconName": "graph-remove",
75
+ "tags": "circle, remove, delete, clear, graph",
76
+ "group": "action",
77
+ "content": "\\e609"
78
+ },
79
+ {
80
+ "displayName": "Group objects",
81
+ "iconName": "group-objects",
82
+ "tags": "group, alignment, organization, arrangement, classification, objects",
83
+ "group": "action",
84
+ "content": "\\e60a"
85
+ },
86
+ {
87
+ "displayName": "Merge into links",
88
+ "iconName": "merge-links",
89
+ "tags": "merge, combine, consolidate, jointment, links",
90
+ "group": "action",
91
+ "content": "\\e60b"
92
+ },
93
+ {
94
+ "displayName": "Layout",
95
+ "iconName": "layout",
96
+ "tags": "layout, presentation, arrangement, graph",
97
+ "group": "data",
98
+ "content": "\\e60c"
99
+ },
100
+ {
101
+ "displayName": "Layout: auto",
102
+ "iconName": "layout-auto",
103
+ "tags": "layout, presentation, arrangement, auto, graph, grid",
104
+ "group": "data",
105
+ "content": "\\e60d"
106
+ },
107
+ {
108
+ "displayName": "Layout: circle",
109
+ "iconName": "layout-circle",
110
+ "tags": "layout, presentation, arrangement, circle, graph, grid",
111
+ "group": "data",
112
+ "content": "\\e60e"
113
+ },
114
+ {
115
+ "displayName": "Layout: hierarchy",
116
+ "iconName": "layout-hierarchy",
117
+ "tags": "layout, presentation, arrangement, hierarchy, order, graph, grid",
118
+ "group": "data",
119
+ "content": "\\e60f"
120
+ },
121
+ {
122
+ "displayName": "Layout: grid",
123
+ "iconName": "layout-grid",
124
+ "tags": "layout, presentation, arrangement, grid, graph, grid",
125
+ "group": "data",
126
+ "content": "\\e610"
127
+ },
128
+ {
129
+ "displayName": "Layout: group by",
130
+ "iconName": "layout-group-by",
131
+ "tags": "layout, presentation, arrangement, group by, graph, grid",
132
+ "group": "data",
133
+ "content": "\\e611"
134
+ },
135
+ {
136
+ "displayName": "Layout: skew grid",
137
+ "iconName": "layout-skew-grid",
138
+ "tags": "layout, presentation, arrangement, skew, graph, grid",
139
+ "group": "data",
140
+ "content": "\\e612"
141
+ },
142
+ {
143
+ "displayName": "Geosearch",
144
+ "iconName": "geosearch",
145
+ "tags": "search, exploration, topography, geography, location, area, magnifying glass, globe",
146
+ "group": "action",
147
+ "content": "\\e613"
148
+ },
149
+ {
150
+ "displayName": "Heatmap",
151
+ "iconName": "heatmap",
152
+ "tags": "hierarchy, matrix, heat map",
153
+ "group": "data",
154
+ "content": "\\e614"
155
+ },
156
+ {
157
+ "displayName": "Drive time",
158
+ "iconName": "drive-time",
159
+ "tags": "car, automobile, vehicle, van, drive, ride, distance, navigation, directions",
160
+ "group": "interface",
161
+ "content": "\\e615"
162
+ },
163
+ {
164
+ "displayName": "Select",
165
+ "iconName": "select",
166
+ "tags": "selection, arrow, cursor, area, range",
167
+ "group": "action",
168
+ "content": "\\e616"
169
+ },
170
+ {
171
+ "displayName": "Predictive analysis",
172
+ "iconName": "predictive-analysis",
173
+ "tags": "analysis, investigation, search, study, test, brain",
174
+ "group": "action",
175
+ "content": "\\e617"
176
+ },
177
+ {
178
+ "displayName": "Layers",
179
+ "iconName": "layers",
180
+ "tags": "layers, levels, stack, cards",
181
+ "group": "interface",
182
+ "content": "\\e618"
183
+ },
184
+ {
185
+ "displayName": "Locate",
186
+ "iconName": "locate",
187
+ "tags": "target, location, destination, mark, map, area",
188
+ "group": "action",
189
+ "content": "\\e619"
190
+ },
191
+ {
192
+ "displayName": "Bookmark",
193
+ "iconName": "bookmark",
194
+ "tags": "bookmark, marker, holder, section, identifier, favorites",
195
+ "group": "action",
196
+ "content": "\\e61a"
197
+ },
198
+ {
199
+ "displayName": "Citation",
200
+ "iconName": "citation",
201
+ "tags": "quotation, citation, marks, excerpt",
202
+ "group": "editor",
203
+ "content": "\\e61b"
204
+ },
205
+ {
206
+ "displayName": "Tag",
207
+ "iconName": "tag",
208
+ "tags": "tag, label, badge, identification",
209
+ "group": "action",
210
+ "content": "\\e61c"
211
+ },
212
+ {
213
+ "displayName": "Clipboard",
214
+ "iconName": "clipboard",
215
+ "tags": "clipboard, notepad, notebook, copy, paste, transfer, storage",
216
+ "group": "action",
217
+ "content": "\\e61d"
218
+ },
219
+ {
220
+ "displayName": "Selection",
221
+ "iconName": "selection",
222
+ "tags": "selection, collection, circle, ring",
223
+ "group": "action",
224
+ "content": "\\29bf"
225
+ },
226
+ {
227
+ "displayName": "Events",
228
+ "iconName": "timeline-events",
229
+ "tags": "calendar, timeframe, agenda, diary, day, week, month",
230
+ "group": "interface",
231
+ "content": "\\e61e"
232
+ },
233
+ {
234
+ "displayName": "Line chart",
235
+ "iconName": "timeline-line-chart",
236
+ "tags": "graph, line, chart",
237
+ "group": "data",
238
+ "content": "\\e61f"
239
+ },
240
+ {
241
+ "displayName": "Bar chart",
242
+ "iconName": "timeline-bar-chart",
243
+ "tags": "graph, bar, chart",
244
+ "group": "data",
245
+ "content": "\\e620"
246
+ },
247
+ {
248
+ "displayName": "Applications",
249
+ "iconName": "applications",
250
+ "tags": "application, browser, windows, platforms",
251
+ "group": "interface",
252
+ "content": "\\e621"
253
+ },
254
+ {
255
+ "displayName": "Projects",
256
+ "iconName": "projects",
257
+ "tags": "drawer, sections",
258
+ "group": "interface",
259
+ "content": "\\e622"
260
+ },
261
+ {
262
+ "displayName": "Changes",
263
+ "iconName": "changes",
264
+ "tags": "arrows, direction, switch",
265
+ "group": "action",
266
+ "content": "\\e623"
267
+ },
268
+ {
269
+ "displayName": "Notifications",
270
+ "iconName": "notifications",
271
+ "tags": "notifications, bell, alarm, notice, warning",
272
+ "group": "interface",
273
+ "content": "\\e624"
274
+ },
275
+ {
276
+ "displayName": "Lock",
277
+ "iconName": "lock",
278
+ "tags": "lock, engage, connect, join, close",
279
+ "group": "action",
280
+ "content": "\\e625"
281
+ },
282
+ {
283
+ "displayName": "Unlock",
284
+ "iconName": "unlock",
285
+ "tags": "unlock, disengage, disconnect, separate, open",
286
+ "group": "action",
287
+ "content": "\\e626"
288
+ },
289
+ {
290
+ "displayName": "User",
291
+ "iconName": "user",
292
+ "tags": "person, human, male, female, character, customer, individual",
293
+ "group": "interface",
294
+ "content": "\\e627"
295
+ },
296
+ {
297
+ "displayName": "Search template",
298
+ "iconName": "search-template",
299
+ "tags": "search, text, magnifying glass",
300
+ "group": "action",
301
+ "content": "\\e628"
302
+ },
303
+ {
304
+ "displayName": "Inbox",
305
+ "iconName": "inbox",
306
+ "tags": "folder, mail, file, message",
307
+ "group": "file",
308
+ "content": "\\e629"
309
+ },
310
+ {
311
+ "displayName": "More",
312
+ "iconName": "more",
313
+ "tags": "dots, three, extra, new, options",
314
+ "group": "interface",
315
+ "content": "\\e62a"
316
+ },
317
+ {
318
+ "displayName": "Help",
319
+ "iconName": "help",
320
+ "tags": "question mark, aid, advice, circle",
321
+ "group": "action",
322
+ "content": "\\003F"
323
+ },
324
+ {
325
+ "displayName": "Calendar",
326
+ "iconName": "calendar",
327
+ "tags": "calendar, timeframe, agenda, diary, day, week, month",
328
+ "group": "interface",
329
+ "content": "\\e62b"
330
+ },
331
+ {
332
+ "displayName": "Media",
333
+ "iconName": "media",
334
+ "tags": "audio, video, media, picture, image, drawing, illustration",
335
+ "group": "media",
336
+ "content": "\\e62c"
337
+ },
338
+ {
339
+ "displayName": "Link",
340
+ "iconName": "link",
341
+ "tags": "link, connection, network",
342
+ "group": "interface",
343
+ "content": "\\e62d"
344
+ },
345
+ {
346
+ "displayName": "Share",
347
+ "iconName": "share",
348
+ "tags": "share, square, arrow",
349
+ "group": "action",
350
+ "content": "\\e62e"
351
+ },
352
+ {
353
+ "displayName": "Download",
354
+ "iconName": "download",
355
+ "tags": "circle, arrow, down, downloading",
356
+ "group": "action",
357
+ "content": "\\e62f"
358
+ },
359
+ {
360
+ "displayName": "Document",
361
+ "iconName": "document",
362
+ "tags": "document, paper, page, file",
363
+ "group": "file",
364
+ "content": "\\e630"
365
+ },
366
+ {
367
+ "displayName": "Properties",
368
+ "iconName": "properties",
369
+ "tags": "lines, dots, three, list",
370
+ "group": "interface",
371
+ "content": "\\e631"
372
+ },
373
+ {
374
+ "displayName": "Import",
375
+ "iconName": "import",
376
+ "tags": "arrow, down, importing,",
377
+ "group": "action",
378
+ "content": "\\e632"
379
+ },
380
+ {
381
+ "displayName": "Export",
382
+ "iconName": "export",
383
+ "tags": "arrow, up, exporting",
384
+ "group": "action",
385
+ "content": "\\e633"
386
+ },
387
+ {
388
+ "displayName": "Minimize",
389
+ "iconName": "minimize",
390
+ "tags": "arrows, decrease, smaller",
391
+ "group": "action",
392
+ "content": "\\e634"
393
+ },
394
+ {
395
+ "displayName": "Maximize",
396
+ "iconName": "maximize",
397
+ "tags": "arrows, increase, bigger",
398
+ "group": "action",
399
+ "content": "\\e635"
400
+ },
401
+ {
402
+ "displayName": "Tick",
403
+ "iconName": "tick",
404
+ "tags": "mark, sign, ok, approved, success",
405
+ "group": "action",
406
+ "content": "\\2713"
407
+ },
408
+ {
409
+ "displayName": "Cross",
410
+ "iconName": "cross",
411
+ "tags": "cross mark, fail, delete, no, close, remove",
412
+ "group": "action",
413
+ "content": "\\2717"
414
+ },
415
+ {
416
+ "displayName": "Plus",
417
+ "iconName": "plus",
418
+ "tags": "sign, add, maximize, zoom in",
419
+ "group": "action",
420
+ "content": "\\002b"
421
+ },
422
+ {
423
+ "displayName": "Minus",
424
+ "iconName": "minus",
425
+ "tags": "sign, remove, minimize, zoom out",
426
+ "group": "action",
427
+ "content": "\\2212"
428
+ },
429
+ {
430
+ "displayName": "Arrow: left",
431
+ "iconName": "arrow-left",
432
+ "tags": "arrow, direction, left",
433
+ "group": "interface",
434
+ "content": "\\2190"
435
+ },
436
+ {
437
+ "displayName": "Arrow: right",
438
+ "iconName": "arrow-right",
439
+ "tags": "arrow, direction, right",
440
+ "group": "interface",
441
+ "content": "\\2192"
442
+ },
443
+ {
444
+ "displayName": "Exchange",
445
+ "iconName": "exchange",
446
+ "tags": "arrows, direction, exchange, network, swap, transfer, transaction",
447
+ "group": "action",
448
+ "content": "\\e636"
449
+ },
450
+ {
451
+ "displayName": "Comparison",
452
+ "iconName": "comparison",
453
+ "tags": "comparison, analogy, layout, contrast",
454
+ "group": "action",
455
+ "content": "\\e637"
456
+ },
457
+ {
458
+ "displayName": "List",
459
+ "iconName": "list",
460
+ "tags": "agenda, four lines, table",
461
+ "group": "table",
462
+ "content": "\\2630"
463
+ },
464
+ {
465
+ "displayName": "Filter",
466
+ "iconName": "filter",
467
+ "tags": "filtering, funnel, tube, pipe",
468
+ "group": "action",
469
+ "content": "\\e638"
470
+ },
471
+ {
472
+ "displayName": "Confirm",
473
+ "iconName": "confirm",
474
+ "tags": "circle, tick, confirmation, acceptance, approval, authorization",
475
+ "group": "action",
476
+ "content": "\\e639"
477
+ },
478
+ {
479
+ "displayName": "Fork",
480
+ "iconName": "fork",
481
+ "tags": "divide, split, break, arrows, direction",
482
+ "group": "action",
483
+ "content": "\\e63a"
484
+ },
485
+ {
486
+ "displayName": "Trash",
487
+ "iconName": "trash",
488
+ "tags": "bin, rubbish, junk, remove, delete",
489
+ "group": "action",
490
+ "content": "\\e63b"
491
+ },
492
+ {
493
+ "displayName": "Person",
494
+ "iconName": "person",
495
+ "tags": "person, human, male, female, character, customer, individual",
496
+ "group": "interface",
497
+ "content": "\\e63c"
498
+ },
499
+ {
500
+ "displayName": "People",
501
+ "iconName": "people",
502
+ "tags": "people, humans, males, females, characters, customers, individuals",
503
+ "group": "interface",
504
+ "content": "\\e63d"
505
+ },
506
+ {
507
+ "displayName": "Add",
508
+ "iconName": "add",
509
+ "tags": "circle, plus, symbol, join",
510
+ "group": "action",
511
+ "content": "\\e63e"
512
+ },
513
+ {
514
+ "displayName": "Remove",
515
+ "iconName": "remove",
516
+ "tags": "circle, minus, symbol, remove",
517
+ "group": "action",
518
+ "content": "\\e63f"
519
+ },
520
+ {
521
+ "displayName": "Geolocation",
522
+ "iconName": "geolocation",
523
+ "tags": "geography, location, position, map, direction",
524
+ "group": "interface",
525
+ "content": "\\e640"
526
+ },
527
+ {
528
+ "displayName": "Zoom in",
529
+ "iconName": "zoom-in",
530
+ "tags": "search, magnifying glass, plus",
531
+ "group": "action",
532
+ "content": "\\e641"
533
+ },
534
+ {
535
+ "displayName": "Zoom out",
536
+ "iconName": "zoom-out",
537
+ "tags": "search, magnifying glass, minus",
538
+ "group": "action",
539
+ "content": "\\e642"
540
+ },
541
+ {
542
+ "displayName": "Refresh",
543
+ "iconName": "refresh",
544
+ "tags": "circle, arrows, rotation",
545
+ "group": "action",
546
+ "content": "\\e643"
547
+ },
548
+ {
549
+ "displayName": "Delete",
550
+ "iconName": "delete",
551
+ "tags": "circle, remove, cross",
552
+ "group": "action",
553
+ "content": "\\e644"
554
+ },
555
+ {
556
+ "displayName": "Cog",
557
+ "iconName": "cog",
558
+ "tags": "settings, circle,",
559
+ "group": "interface",
560
+ "content": "\\e645"
561
+ },
562
+ {
563
+ "displayName": "Flag",
564
+ "iconName": "flag",
565
+ "tags": "map, position, country, nationality",
566
+ "group": "interface",
567
+ "content": "\\2691"
568
+ },
569
+ {
570
+ "displayName": "Pin",
571
+ "iconName": "pin",
572
+ "tags": "map, position, safety pin, attach",
573
+ "group": "action",
574
+ "content": "\\e646"
575
+ },
576
+ {
577
+ "displayName": "Warning sign",
578
+ "iconName": "warning-sign",
579
+ "tags": "notification, warning, triangle, exclamation mark, sign",
580
+ "group": "interface",
581
+ "content": "\\e647"
582
+ },
583
+ {
584
+ "displayName": "Error",
585
+ "iconName": "error",
586
+ "tags": "notification, failure, circle, exclamation mark, sign",
587
+ "group": "interface",
588
+ "content": "\\e648"
589
+ },
590
+ {
591
+ "displayName": "Info sign",
592
+ "iconName": "info-sign",
593
+ "tags": "notification, information, circle, message, sign",
594
+ "group": "interface",
595
+ "content": "\\2139"
596
+ },
597
+ {
598
+ "displayName": "Credit card",
599
+ "iconName": "credit-card",
600
+ "tags": "payment, bank, transaction",
601
+ "group": "action",
602
+ "content": "\\e649"
603
+ },
604
+ {
605
+ "displayName": "Edit",
606
+ "iconName": "edit",
607
+ "tags": "annotate, pen, modify",
608
+ "group": "action",
609
+ "content": "\\270E"
610
+ },
611
+ {
612
+ "displayName": "History",
613
+ "iconName": "history",
614
+ "tags": "past, reverse, circle, arrow",
615
+ "group": "action",
616
+ "content": "\\e64a"
617
+ },
618
+ {
619
+ "displayName": "Search",
620
+ "iconName": "search",
621
+ "tags": "inspection, exploration, magnifying glass",
622
+ "group": "action",
623
+ "content": "\\e64b"
624
+ },
625
+ {
626
+ "displayName": "Logout",
627
+ "iconName": "log-out",
628
+ "tags": "arrow, leave",
629
+ "group": "action",
630
+ "content": "\\e64c"
631
+ },
632
+ {
633
+ "displayName": "Star",
634
+ "iconName": "star",
635
+ "tags": "shape, pin, mark, pro",
636
+ "group": "interface",
637
+ "content": "\\2605"
638
+ },
639
+ {
640
+ "displayName": "Star: empty",
641
+ "iconName": "star-empty",
642
+ "tags": "shape, unpin, mark",
643
+ "group": "interface",
644
+ "content": "\\2606"
645
+ },
646
+ {
647
+ "displayName": "Sort: alphabetical",
648
+ "iconName": "sort-alphabetical",
649
+ "tags": "ascending, array, arrange",
650
+ "group": "action",
651
+ "content": "\\e64d"
652
+ },
653
+ {
654
+ "displayName": "Sort: numerical",
655
+ "iconName": "sort-numerical",
656
+ "tags": "ascending, array, arrange",
657
+ "group": "action",
658
+ "content": "\\e64e"
659
+ },
660
+ {
661
+ "displayName": "Sort",
662
+ "iconName": "sort",
663
+ "tags": "ascending, array, arrange",
664
+ "group": "action",
665
+ "content": "\\e64f"
666
+ },
667
+ {
668
+ "displayName": "Folder: opened",
669
+ "iconName": "folder-open",
670
+ "tags": "file, portfolio, case",
671
+ "group": "file",
672
+ "content": "\\e651"
673
+ },
674
+ {
675
+ "displayName": "Folder: closed",
676
+ "iconName": "folder-close",
677
+ "tags": "file, portfolio, case",
678
+ "group": "file",
679
+ "content": "\\e652"
680
+ },
681
+ {
682
+ "displayName": "Folder: shared",
683
+ "iconName": "folder-shared",
684
+ "tags": "file, portfolio, case",
685
+ "group": "file",
686
+ "content": "\\e653"
687
+ },
688
+ {
689
+ "displayName": "Caret: up",
690
+ "iconName": "caret-up",
691
+ "tags": "direction, order, up",
692
+ "group": "interface",
693
+ "content": "\\2303"
694
+ },
695
+ {
696
+ "displayName": "Caret: right",
697
+ "iconName": "caret-right",
698
+ "tags": "direction, order, right",
699
+ "group": "interface",
700
+ "content": "\\232A"
701
+ },
702
+ {
703
+ "displayName": "Caret: down",
704
+ "iconName": "caret-down",
705
+ "tags": "direction, order, down",
706
+ "group": "interface",
707
+ "content": "\\2304"
708
+ },
709
+ {
710
+ "displayName": "Caret: left",
711
+ "iconName": "caret-left",
712
+ "tags": "direction, order, left",
713
+ "group": "interface",
714
+ "content": "\\2329"
715
+ },
716
+ {
717
+ "displayName": "Menu: opened",
718
+ "iconName": "menu-open",
719
+ "tags": "show, navigation",
720
+ "group": "interface",
721
+ "content": "\\e654"
722
+ },
723
+ {
724
+ "displayName": "Menu: closed",
725
+ "iconName": "menu-closed",
726
+ "tags": "hide, navigation",
727
+ "group": "interface",
728
+ "content": "\\e655"
729
+ },
730
+ {
731
+ "displayName": "Feed",
732
+ "iconName": "feed",
733
+ "tags": "rss, feed",
734
+ "group": "interface",
735
+ "content": "\\e656"
736
+ },
737
+ {
738
+ "displayName": "Two columns",
739
+ "iconName": "two-columns",
740
+ "tags": "layout, columns, switch, change, two",
741
+ "group": "action",
742
+ "content": "\\e657"
743
+ },
744
+ {
745
+ "displayName": "One column",
746
+ "iconName": "one-column",
747
+ "tags": "layout, columns, switch, change, one",
748
+ "group": "action",
749
+ "content": "\\e658"
750
+ },
751
+ {
752
+ "displayName": "Dot",
753
+ "iconName": "dot",
754
+ "tags": "point, circle, small",
755
+ "group": "miscellaneous",
756
+ "content": "\\2022"
757
+ },
758
+ {
759
+ "displayName": "Property",
760
+ "iconName": "property",
761
+ "tags": "list, order",
762
+ "group": "interface",
763
+ "content": "\\e65a"
764
+ },
765
+ {
766
+ "displayName": "Time",
767
+ "iconName": "time",
768
+ "tags": "clock, day, hours, minutes, seconds",
769
+ "group": "interface",
770
+ "content": "\\23F2"
771
+ },
772
+ {
773
+ "displayName": "Disable",
774
+ "iconName": "disable",
775
+ "tags": "off, circle, remove",
776
+ "group": "action",
777
+ "content": "\\e600"
778
+ },
779
+ {
780
+ "displayName": "Unpin",
781
+ "iconName": "unpin",
782
+ "tags": "map, position, safety pin, detach",
783
+ "group": "action",
784
+ "content": "\\e650"
785
+ },
786
+ {
787
+ "displayName": "Flows",
788
+ "iconName": "flows",
789
+ "tags": "arrows, direction, links",
790
+ "group": "data",
791
+ "content": "\\e659"
792
+ },
793
+ {
794
+ "displayName": "New text box",
795
+ "iconName": "new-text-box",
796
+ "tags": "text box, edit, new, create",
797
+ "group": "action",
798
+ "content": "\\e65b"
799
+ },
800
+ {
801
+ "displayName": "New link",
802
+ "iconName": "new-link",
803
+ "tags": "create, add, plus, links",
804
+ "group": "action",
805
+ "content": "\\e65c"
806
+ },
807
+ {
808
+ "displayName": "New object",
809
+ "iconName": "new-object",
810
+ "tags": "create, add, plus, objects, circle",
811
+ "group": "action",
812
+ "content": "\\e65d"
813
+ },
814
+ {
815
+ "displayName": "Path search",
816
+ "iconName": "path-search",
817
+ "tags": "map, magnifying glass, position, location",
818
+ "group": "action",
819
+ "content": "\\e65e"
820
+ },
821
+ {
822
+ "displayName": "Automatic updates",
823
+ "iconName": "automatic-updates",
824
+ "tags": "circle, arrows, tick, amends, updates",
825
+ "group": "action",
826
+ "content": "\\e65f"
827
+ },
828
+ {
829
+ "displayName": "Page layout",
830
+ "iconName": "page-layout",
831
+ "tags": "browser, table, design, columns",
832
+ "group": "table",
833
+ "content": "\\e660"
834
+ },
835
+ {
836
+ "displayName": "Code",
837
+ "iconName": "code",
838
+ "tags": "code, markup, language, tag",
839
+ "group": "action",
840
+ "content": "\\e661"
841
+ },
842
+ {
843
+ "displayName": "Map",
844
+ "iconName": "map",
845
+ "tags": "map, location, position, geography, world",
846
+ "group": "interface",
847
+ "content": "\\e662"
848
+ },
849
+ {
850
+ "displayName": "Search text",
851
+ "iconName": "search-text",
852
+ "tags": "magnifying glass, exploration",
853
+ "group": "action",
854
+ "content": "\\e663"
855
+ },
856
+ {
857
+ "displayName": "Envelope",
858
+ "iconName": "envelope",
859
+ "tags": "post, mail, send, email",
860
+ "group": "interface",
861
+ "content": "\\2709"
862
+ },
863
+ {
864
+ "displayName": "Paperclip",
865
+ "iconName": "paperclip",
866
+ "tags": "attachments, add",
867
+ "group": "action",
868
+ "content": "\\e664"
869
+ },
870
+ {
871
+ "displayName": "Label",
872
+ "iconName": "label",
873
+ "tags": "text, tag, ticket",
874
+ "group": "interface",
875
+ "content": "\\e665"
876
+ },
877
+ {
878
+ "displayName": "Globe",
879
+ "iconName": "globe",
880
+ "tags": "planet, earth, map, location, geography, world",
881
+ "group": "miscellaneous",
882
+ "content": "\\e666"
883
+ },
884
+ {
885
+ "displayName": "Home",
886
+ "iconName": "home",
887
+ "tags": "house, building, destination",
888
+ "group": "miscellaneous",
889
+ "content": "\\2302"
890
+ },
891
+ {
892
+ "displayName": "Table",
893
+ "iconName": "th",
894
+ "tags": "index, rows, columns, agenda, list, spreadsheet",
895
+ "group": "table",
896
+ "content": "\\e667"
897
+ },
898
+ {
899
+ "displayName": "Table: list",
900
+ "iconName": "th-list",
901
+ "tags": "index, rows, list, order, series",
902
+ "group": "table",
903
+ "content": "\\e668"
904
+ },
905
+ {
906
+ "displayName": "Table: derived",
907
+ "iconName": "th-derived",
908
+ "tags": "get, obtain, take, acquire, index, rows, columns, list",
909
+ "group": "table",
910
+ "content": "\\e669"
911
+ },
912
+ {
913
+ "displayName": "Circle",
914
+ "iconName": "circle",
915
+ "tags": "radial, empty, area, radius, selection",
916
+ "group": "action",
917
+ "content": "\\e66a"
918
+ },
919
+ {
920
+ "displayName": "Draw",
921
+ "iconName": "draw",
922
+ "tags": "selection, area, highlight, sketch",
923
+ "group": "action",
924
+ "content": "\\e66b"
925
+ },
926
+ {
927
+ "displayName": "Insert",
928
+ "iconName": "insert",
929
+ "tags": "square, plus, add, embed, include, inject",
930
+ "group": "action",
931
+ "content": "\\e66c"
932
+ },
933
+ {
934
+ "displayName": "Helper management",
935
+ "iconName": "helper-management",
936
+ "tags": "square, widget",
937
+ "group": "interface",
938
+ "content": "\\e66d"
939
+ },
940
+ {
941
+ "displayName": "Send to",
942
+ "iconName": "send-to",
943
+ "tags": "circle, export, arrow",
944
+ "group": "action",
945
+ "content": "\\e66e"
946
+ },
947
+ {
948
+ "displayName": "Eye",
949
+ "iconName": "eye-open",
950
+ "tags": "show, visible, clear, view, vision",
951
+ "group": "interface",
952
+ "content": "\\e66f"
953
+ },
954
+ {
955
+ "displayName": "Folder: shared open",
956
+ "iconName": "folder-shared-open",
957
+ "tags": "file, portfolio, case",
958
+ "group": "file",
959
+ "content": "\\e670"
960
+ },
961
+ {
962
+ "displayName": "Social media",
963
+ "iconName": "social-media",
964
+ "tags": "circle, rotate, share",
965
+ "group": "action",
966
+ "content": "\\e671"
967
+ },
968
+ {
969
+ "displayName": "Arrow: up",
970
+ "iconName": "arrow-up",
971
+ "tags": "direction, north",
972
+ "group": "interface",
973
+ "content": "\\2191 "
974
+ },
975
+ {
976
+ "displayName": "Arrow: down",
977
+ "iconName": "arrow-down",
978
+ "tags": "direction, south",
979
+ "group": "interface",
980
+ "content": "\\2193 "
981
+ },
982
+ {
983
+ "displayName": "Arrows: horizontal",
984
+ "iconName": "arrows-horizontal",
985
+ "tags": "direction, level",
986
+ "group": "interface",
987
+ "content": "\\2194 "
988
+ },
989
+ {
990
+ "displayName": "Arrows: vertical",
991
+ "iconName": "arrows-vertical",
992
+ "tags": "direction, level",
993
+ "group": "interface",
994
+ "content": "\\2195 "
995
+ },
996
+ {
997
+ "displayName": "Resolve",
998
+ "iconName": "resolve",
999
+ "tags": "circles, divide, split",
1000
+ "group": "action",
1001
+ "content": "\\e672"
1002
+ },
1003
+ {
1004
+ "displayName": "Graph",
1005
+ "iconName": "graph",
1006
+ "tags": "graph, diagram",
1007
+ "group": "data",
1008
+ "content": "\\e673"
1009
+ },
1010
+ {
1011
+ "displayName": "Briefcase",
1012
+ "iconName": "briefcase",
1013
+ "tags": "suitcase, business, case, baggage,",
1014
+ "group": "miscellaneous",
1015
+ "content": "\\e674"
1016
+ },
1017
+ {
1018
+ "displayName": "Dollar",
1019
+ "iconName": "dollar",
1020
+ "tags": "currency, money",
1021
+ "group": "miscellaneous",
1022
+ "content": "\\0024"
1023
+ },
1024
+ {
1025
+ "displayName": "Ninja",
1026
+ "iconName": "ninja",
1027
+ "tags": "star, fighter, symbol",
1028
+ "group": "miscellaneous",
1029
+ "content": "\\e675"
1030
+ },
1031
+ {
1032
+ "displayName": "Delta",
1033
+ "iconName": "delta",
1034
+ "tags": "alt j, symbol",
1035
+ "group": "miscellaneous",
1036
+ "content": "\\0394"
1037
+ },
1038
+ {
1039
+ "displayName": "Barcode",
1040
+ "iconName": "barcode",
1041
+ "tags": "product, scan,",
1042
+ "group": "miscellaneous",
1043
+ "content": "\\e676"
1044
+ },
1045
+ {
1046
+ "displayName": "Torch",
1047
+ "iconName": "torch",
1048
+ "tags": "light, flashlight, tool",
1049
+ "group": "miscellaneous",
1050
+ "content": "\\e677"
1051
+ },
1052
+ {
1053
+ "displayName": "Widget",
1054
+ "iconName": "widget",
1055
+ "tags": "square, corners",
1056
+ "group": "interface",
1057
+ "content": "\\e678"
1058
+ },
1059
+ {
1060
+ "displayName": "Unresolve",
1061
+ "iconName": "unresolve",
1062
+ "tags": "split, divide, disconnect, separate",
1063
+ "group": "action",
1064
+ "content": "\\e679"
1065
+ },
1066
+ {
1067
+ "displayName": "Offline",
1068
+ "iconName": "offline",
1069
+ "tags": "circle, lightning, disconnected, down",
1070
+ "group": "interface",
1071
+ "content": "\\e67a"
1072
+ },
1073
+ {
1074
+ "displayName": "Zoom to fit",
1075
+ "iconName": "zoom-to-fit",
1076
+ "tags": "fit, scale, resize, adjust",
1077
+ "group": "action",
1078
+ "content": "\\e67b"
1079
+ },
1080
+ {
1081
+ "displayName": "Add to artifact",
1082
+ "iconName": "add-to-artifact",
1083
+ "tags": "list, plus",
1084
+ "group": "action",
1085
+ "content": "\\e67c"
1086
+ },
1087
+ {
1088
+ "displayName": "Map marker",
1089
+ "iconName": "map-marker",
1090
+ "tags": "pin, map, location, position, geography, world",
1091
+ "group": "interface",
1092
+ "content": "\\e67d"
1093
+ },
1094
+ {
1095
+ "displayName": "Chart",
1096
+ "iconName": "chart",
1097
+ "tags": "arrow, increase, up, line, bar, graph",
1098
+ "group": "data",
1099
+ "content": "\\e67e"
1100
+ },
1101
+ {
1102
+ "displayName": "Control",
1103
+ "iconName": "control",
1104
+ "tags": "squares, layout",
1105
+ "group": "interface",
1106
+ "content": "\\e67f"
1107
+ },
1108
+ {
1109
+ "displayName": "Multi select",
1110
+ "iconName": "multi-select",
1111
+ "tags": "layers, selection",
1112
+ "group": "interface",
1113
+ "content": "\\e680"
1114
+ },
1115
+ {
1116
+ "displayName": "Direction: left",
1117
+ "iconName": "direction-left",
1118
+ "tags": "pointer, west",
1119
+ "group": "interface",
1120
+ "content": "\\e681"
1121
+ },
1122
+ {
1123
+ "displayName": "Direction: right",
1124
+ "iconName": "direction-right",
1125
+ "tags": "pointer, east",
1126
+ "group": "interface",
1127
+ "content": "\\e682"
1128
+ },
1129
+ {
1130
+ "displayName": "Database",
1131
+ "iconName": "database",
1132
+ "tags": "stack, storage",
1133
+ "group": "data",
1134
+ "content": "\\e683"
1135
+ },
1136
+ {
1137
+ "displayName": "Pie chart",
1138
+ "iconName": "pie-chart",
1139
+ "tags": "circle, part, section",
1140
+ "group": "data",
1141
+ "content": "\\e684"
1142
+ },
1143
+ {
1144
+ "displayName": "Full circle",
1145
+ "iconName": "full-circle",
1146
+ "tags": "dot, point",
1147
+ "group": "miscellaneous",
1148
+ "content": "\\e685"
1149
+ },
1150
+ {
1151
+ "displayName": "Square",
1152
+ "iconName": "square",
1153
+ "tags": "empty, outline",
1154
+ "group": "miscellaneous",
1155
+ "content": "\\e686"
1156
+ },
1157
+ {
1158
+ "displayName": "Print",
1159
+ "iconName": "print",
1160
+ "tags": "printer, paper",
1161
+ "group": "action",
1162
+ "content": "\\2399"
1163
+ },
1164
+ {
1165
+ "displayName": "Presentation",
1166
+ "iconName": "presentation",
1167
+ "tags": "display, presentation",
1168
+ "group": "interface",
1169
+ "content": "\\e687"
1170
+ },
1171
+ {
1172
+ "displayName": "Ungroup objects",
1173
+ "iconName": "ungroup-objects",
1174
+ "tags": "split, divide, disconnect, separate",
1175
+ "group": "action",
1176
+ "content": "\\e688"
1177
+ },
1178
+ {
1179
+ "displayName": "Chat",
1180
+ "iconName": "chat",
1181
+ "tags": "speech, conversation, communication, talk",
1182
+ "group": "action",
1183
+ "content": "\\e689"
1184
+ },
1185
+ {
1186
+ "displayName": "Comment",
1187
+ "iconName": "comment",
1188
+ "tags": "statement, discussion, opinion, view",
1189
+ "group": "action",
1190
+ "content": "\\e68a"
1191
+ },
1192
+ {
1193
+ "displayName": "Circle arrow: right",
1194
+ "iconName": "circle-arrow-right",
1195
+ "tags": "direction, east",
1196
+ "group": "interface",
1197
+ "content": "\\e68b"
1198
+ },
1199
+ {
1200
+ "displayName": "Circle arrow: left",
1201
+ "iconName": "circle-arrow-left",
1202
+ "tags": "direction, west",
1203
+ "group": "interface",
1204
+ "content": "\\e68c"
1205
+ },
1206
+ {
1207
+ "displayName": "Circle arrow: up",
1208
+ "iconName": "circle-arrow-up",
1209
+ "tags": "direction, north",
1210
+ "group": "interface",
1211
+ "content": "\\e68d"
1212
+ },
1213
+ {
1214
+ "displayName": "Circle arrow: down",
1215
+ "iconName": "circle-arrow-down",
1216
+ "tags": "direction, south",
1217
+ "group": "interface",
1218
+ "content": "\\e68e"
1219
+ },
1220
+ {
1221
+ "displayName": "Upload",
1222
+ "iconName": "upload",
1223
+ "tags": "arrow, circle, up, transfer",
1224
+ "group": "action",
1225
+ "content": "\\e68f"
1226
+ },
1227
+ {
1228
+ "displayName": "Asterisk",
1229
+ "iconName": "asterisk",
1230
+ "tags": "note, symbol, starred, marked",
1231
+ "group": "miscellaneous",
1232
+ "content": "\\002a"
1233
+ },
1234
+ {
1235
+ "displayName": "Cloud",
1236
+ "iconName": "cloud",
1237
+ "tags": "file, storage, weather",
1238
+ "group": "file",
1239
+ "content": "\\2601"
1240
+ },
1241
+ {
1242
+ "displayName": "Cloud: download",
1243
+ "iconName": "cloud-download",
1244
+ "tags": "file, storage, transfer",
1245
+ "group": "file",
1246
+ "content": "\\e690"
1247
+ },
1248
+ {
1249
+ "displayName": "Cloud: upload",
1250
+ "iconName": "cloud-upload",
1251
+ "tags": "file, storage, transfer",
1252
+ "group": "file",
1253
+ "content": "\\e691"
1254
+ },
1255
+ {
1256
+ "displayName": "Repeat",
1257
+ "iconName": "repeat",
1258
+ "tags": "circle, arrow",
1259
+ "group": "action",
1260
+ "content": "\\e692"
1261
+ },
1262
+ {
1263
+ "displayName": "Move",
1264
+ "iconName": "move",
1265
+ "tags": "arrows, directions, position, location",
1266
+ "group": "action",
1267
+ "content": "\\e693"
1268
+ },
1269
+ {
1270
+ "displayName": "Chevron: left",
1271
+ "iconName": "chevron-left",
1272
+ "tags": "arrow, direction",
1273
+ "group": "interface",
1274
+ "content": "\\e694"
1275
+ },
1276
+ {
1277
+ "displayName": "Chevron: right",
1278
+ "iconName": "chevron-right",
1279
+ "tags": "arrow, direction",
1280
+ "group": "interface",
1281
+ "content": "\\e695"
1282
+ },
1283
+ {
1284
+ "displayName": "Chevron: up",
1285
+ "iconName": "chevron-up",
1286
+ "tags": "arrow, direction",
1287
+ "group": "interface",
1288
+ "content": "\\e696"
1289
+ },
1290
+ {
1291
+ "displayName": "Chevron: down",
1292
+ "iconName": "chevron-down",
1293
+ "tags": "arrow, direction",
1294
+ "group": "interface",
1295
+ "content": "\\e697"
1296
+ },
1297
+ {
1298
+ "displayName": "Random",
1299
+ "iconName": "random",
1300
+ "tags": "arrows, aim",
1301
+ "group": "interface",
1302
+ "content": "\\e698"
1303
+ },
1304
+ {
1305
+ "displayName": "Fullscreen",
1306
+ "iconName": "fullscreen",
1307
+ "tags": "size, arrows, increase, proportion, width, height",
1308
+ "group": "media",
1309
+ "content": "\\e699"
1310
+ },
1311
+ {
1312
+ "displayName": "Login",
1313
+ "iconName": "log-in",
1314
+ "tags": "arrow, sign in",
1315
+ "group": "action",
1316
+ "content": "\\e69a"
1317
+ },
1318
+ {
1319
+ "displayName": "Heart",
1320
+ "iconName": "heart",
1321
+ "tags": "love, like, organ, human, feelings",
1322
+ "group": "miscellaneous",
1323
+ "content": "\\2665"
1324
+ },
1325
+ {
1326
+ "displayName": "Office",
1327
+ "iconName": "office",
1328
+ "tags": "building, business, location, street",
1329
+ "group": "miscellaneous",
1330
+ "content": "\\e69b"
1331
+ },
1332
+ {
1333
+ "displayName": "Duplicate",
1334
+ "iconName": "duplicate",
1335
+ "tags": "copy, square, two",
1336
+ "group": "action",
1337
+ "content": "\\e69c"
1338
+ },
1339
+ {
1340
+ "displayName": "Ban circle",
1341
+ "iconName": "ban-circle",
1342
+ "tags": "circle, refusal",
1343
+ "group": "action",
1344
+ "content": "\\e69d"
1345
+ },
1346
+ {
1347
+ "displayName": "Camera",
1348
+ "iconName": "camera",
1349
+ "tags": "photograph, picture, video",
1350
+ "group": "media",
1351
+ "content": "\\e69e"
1352
+ },
1353
+ {
1354
+ "displayName": "Mobile video",
1355
+ "iconName": "mobile-video",
1356
+ "tags": "film, broadcast, television",
1357
+ "group": "media",
1358
+ "content": "\\e69f"
1359
+ },
1360
+ {
1361
+ "displayName": "Video",
1362
+ "iconName": "video",
1363
+ "tags": "film, broadcast, television",
1364
+ "group": "media",
1365
+ "content": "\\e6a0"
1366
+ },
1367
+ {
1368
+ "displayName": "Film",
1369
+ "iconName": "film",
1370
+ "tags": "movie, cinema, theatre",
1371
+ "group": "media",
1372
+ "content": "\\e6a1"
1373
+ },
1374
+ {
1375
+ "displayName": "Settings",
1376
+ "iconName": "settings",
1377
+ "tags": "controls, knobs",
1378
+ "group": "media",
1379
+ "content": "\\e6a2"
1380
+ },
1381
+ {
1382
+ "displayName": "Volume: off",
1383
+ "iconName": "volume-off",
1384
+ "tags": "audio, video, speaker, music, sound, low",
1385
+ "group": "media",
1386
+ "content": "\\e6a3"
1387
+ },
1388
+ {
1389
+ "displayName": "Volume: down",
1390
+ "iconName": "volume-down",
1391
+ "tags": "audio, video, speaker, music, sound",
1392
+ "group": "media",
1393
+ "content": "\\e6a4"
1394
+ },
1395
+ {
1396
+ "displayName": "Volume: up",
1397
+ "iconName": "volume-up",
1398
+ "tags": "audio, video, speaker, music, sound, high",
1399
+ "group": "media",
1400
+ "content": "\\e6a5"
1401
+ },
1402
+ {
1403
+ "displayName": "Music",
1404
+ "iconName": "music",
1405
+ "tags": "audio, video, note, sound",
1406
+ "group": "media",
1407
+ "content": "\\e6a6"
1408
+ },
1409
+ {
1410
+ "displayName": "Step backward",
1411
+ "iconName": "step-backward",
1412
+ "tags": "player, media, controls, digital, analogue, film, audio, video",
1413
+ "group": "media",
1414
+ "content": "\\e6a7"
1415
+ },
1416
+ {
1417
+ "displayName": "Fast backward",
1418
+ "iconName": "fast-backward",
1419
+ "tags": "player, media, controls, digital, analogue, film, audio, video",
1420
+ "group": "media",
1421
+ "content": "\\e6a8"
1422
+ },
1423
+ {
1424
+ "displayName": "Pause",
1425
+ "iconName": "pause",
1426
+ "tags": "player, media, controls, digital, analogue, film, audio, video",
1427
+ "group": "media",
1428
+ "content": "\\e6a9"
1429
+ },
1430
+ {
1431
+ "displayName": "Stop",
1432
+ "iconName": "stop",
1433
+ "tags": "player, media, controls, digital, analogue, film, audio, video",
1434
+ "group": "media",
1435
+ "content": "\\e6aa"
1436
+ },
1437
+ {
1438
+ "displayName": "Play",
1439
+ "iconName": "play",
1440
+ "tags": "player, media, controls, digital, analogue, film, audio, video",
1441
+ "group": "media",
1442
+ "content": "\\e6ab"
1443
+ },
1444
+ {
1445
+ "displayName": "Fast forward",
1446
+ "iconName": "fast-forward",
1447
+ "tags": "player, media, controls, digital, analogue, film, audio, video",
1448
+ "group": "media",
1449
+ "content": "\\e6ac"
1450
+ },
1451
+ {
1452
+ "displayName": "Step forward",
1453
+ "iconName": "step-forward",
1454
+ "tags": "player, media, controls, digital, analogue, film, audio, video",
1455
+ "group": "media",
1456
+ "content": "\\e6ad"
1457
+ },
1458
+ {
1459
+ "displayName": "Eject",
1460
+ "iconName": "eject",
1461
+ "tags": "player, media, controls, digital, analogue, film, audio, video",
1462
+ "group": "media",
1463
+ "content": "\\23cf"
1464
+ },
1465
+ {
1466
+ "displayName": "Record",
1467
+ "iconName": "record",
1468
+ "tags": "player, media, controls, digital, analogue, film, audio, video",
1469
+ "group": "media",
1470
+ "content": "\\e6ae"
1471
+ },
1472
+ {
1473
+ "displayName": "Desktop",
1474
+ "iconName": "desktop",
1475
+ "tags": "screen, monitor, display",
1476
+ "group": "media",
1477
+ "content": "\\e6af"
1478
+ },
1479
+ {
1480
+ "displayName": "Phone",
1481
+ "iconName": "phone",
1482
+ "tags": "telephone, call, ring",
1483
+ "group": "media",
1484
+ "content": "\\260e"
1485
+ },
1486
+ {
1487
+ "displayName": "Lightbulb",
1488
+ "iconName": "lightbulb",
1489
+ "tags": "idea, glow, lamp",
1490
+ "group": "miscellaneous",
1491
+ "content": "\\e6b0"
1492
+ },
1493
+ {
1494
+ "displayName": "Glass",
1495
+ "iconName": "glass",
1496
+ "tags": "glassware, drink",
1497
+ "group": "miscellaneous",
1498
+ "content": "\\e6b1"
1499
+ },
1500
+ {
1501
+ "displayName": "Tint",
1502
+ "iconName": "tint",
1503
+ "tags": "drop, color, coloration, hue",
1504
+ "group": "media",
1505
+ "content": "\\e6b2"
1506
+ },
1507
+ {
1508
+ "displayName": "Flash",
1509
+ "iconName": "flash",
1510
+ "tags": "light, contrast, photograph, picture",
1511
+ "group": "media",
1512
+ "content": "\\e6b3"
1513
+ },
1514
+ {
1515
+ "displayName": "Font",
1516
+ "iconName": "font",
1517
+ "tags": "scale, typography, size",
1518
+ "group": "editor",
1519
+ "content": "\\e6b4"
1520
+ },
1521
+ {
1522
+ "displayName": "Header",
1523
+ "iconName": "header",
1524
+ "tags": "typography, section, layout",
1525
+ "group": "editor",
1526
+ "content": "\\e6b5"
1527
+ },
1528
+ {
1529
+ "displayName": "Saved",
1530
+ "iconName": "saved",
1531
+ "tags": "document, check mark, tick",
1532
+ "group": "file",
1533
+ "content": "\\e6b6"
1534
+ },
1535
+ {
1536
+ "displayName": "Floppy disk",
1537
+ "iconName": "floppy-disk",
1538
+ "tags": "save",
1539
+ "group": "interface",
1540
+ "content": "\\e6b7"
1541
+ },
1542
+ {
1543
+ "displayName": "Book",
1544
+ "iconName": "book",
1545
+ "tags": "pages, album, brochure, manual",
1546
+ "group": "miscellaneous",
1547
+ "content": "\\e6b8"
1548
+ },
1549
+ {
1550
+ "displayName": "Hand: right",
1551
+ "iconName": "hand-right",
1552
+ "tags": "gesture, direction",
1553
+ "group": "interface",
1554
+ "content": "\\e6b9"
1555
+ },
1556
+ {
1557
+ "displayName": "Hand: up",
1558
+ "iconName": "hand-up",
1559
+ "tags": "gesture, direction",
1560
+ "group": "interface",
1561
+ "content": "\\e6ba"
1562
+ },
1563
+ {
1564
+ "displayName": "Hand: down",
1565
+ "iconName": "hand-down",
1566
+ "tags": "gesture, direction",
1567
+ "group": "interface",
1568
+ "content": "\\e6bb"
1569
+ },
1570
+ {
1571
+ "displayName": "Hand: left",
1572
+ "iconName": "hand-left",
1573
+ "tags": "gesture, direction",
1574
+ "group": "interface",
1575
+ "content": "\\e6bc"
1576
+ },
1577
+ {
1578
+ "displayName": "Thumbs: up",
1579
+ "iconName": "thumbs-up",
1580
+ "tags": "hand, like, ok",
1581
+ "group": "interface",
1582
+ "content": "\\e6bd"
1583
+ },
1584
+ {
1585
+ "displayName": "Thumbs: down",
1586
+ "iconName": "thumbs-down",
1587
+ "tags": "hand, dislike, bad",
1588
+ "group": "interface",
1589
+ "content": "\\e6be"
1590
+ },
1591
+ {
1592
+ "displayName": "Box",
1593
+ "iconName": "box",
1594
+ "tags": "folder, carton, pack",
1595
+ "group": "file",
1596
+ "content": "\\e6bf"
1597
+ },
1598
+ {
1599
+ "displayName": "Compressed",
1600
+ "iconName": "compressed",
1601
+ "tags": "folder, carton, pack, shrink, wrap, shorten",
1602
+ "group": "file",
1603
+ "content": "\\e6c0"
1604
+ },
1605
+ {
1606
+ "displayName": "Shopping cart",
1607
+ "iconName": "shopping-cart",
1608
+ "tags": "trolley, mall, online, store, business",
1609
+ "group": "miscellaneous",
1610
+ "content": "\\e6c1"
1611
+ },
1612
+ {
1613
+ "displayName": "Shop",
1614
+ "iconName": "shop",
1615
+ "tags": "store, business, shopping",
1616
+ "group": "miscellaneous",
1617
+ "content": "\\e6c2"
1618
+ },
1619
+ {
1620
+ "displayName": "Layout: linear",
1621
+ "iconName": "layout-linear",
1622
+ "tags": "dots, connection, line",
1623
+ "group": "data",
1624
+ "content": "\\e6c3"
1625
+ },
1626
+ {
1627
+ "displayName": "Undo",
1628
+ "iconName": "undo",
1629
+ "tags": "back, cancel, reverse, revoke,",
1630
+ "group": "action",
1631
+ "content": "\\238c"
1632
+ },
1633
+ {
1634
+ "displayName": "Redo",
1635
+ "iconName": "redo",
1636
+ "tags": "forward, push",
1637
+ "group": "action",
1638
+ "content": "\\e6c4"
1639
+ },
1640
+ {
1641
+ "displayName": "Code block",
1642
+ "iconName": "code-block",
1643
+ "tags": "code, markup, language, tag",
1644
+ "group": "file",
1645
+ "content": "\\e6c5"
1646
+ },
1647
+ {
1648
+ "displayName": "Double caret: vertical",
1649
+ "iconName": "double-caret-vertical",
1650
+ "tags": "sort, arrow, list",
1651
+ "group": "interface",
1652
+ "content": "\\e6c6"
1653
+ },
1654
+ {
1655
+ "displayName": "Double caret: horizontal",
1656
+ "iconName": "double-caret-horizontal",
1657
+ "tags": "sort, arrow, list",
1658
+ "group": "interface",
1659
+ "content": "\\e6c7"
1660
+ },
1661
+ {
1662
+ "displayName": "Sort: alphabetical descending",
1663
+ "iconName": "sort-alphabetical-desc",
1664
+ "tags": "order, list, array, arrange",
1665
+ "group": "action",
1666
+ "content": "\\e6c8"
1667
+ },
1668
+ {
1669
+ "displayName": "Sort: numerical descending",
1670
+ "iconName": "sort-numerical-desc",
1671
+ "tags": "order, list, array, arrange",
1672
+ "group": "action",
1673
+ "content": "\\e6c9"
1674
+ },
1675
+ {
1676
+ "displayName": "Take action",
1677
+ "iconName": "take-action",
1678
+ "tags": "case, court, deal, gavel",
1679
+ "group": "action",
1680
+ "content": "\\e6ca"
1681
+ },
1682
+ {
1683
+ "displayName": "Contrast",
1684
+ "iconName": "contrast",
1685
+ "tags": "color, brightness",
1686
+ "group": "media",
1687
+ "content": "\\e6cb"
1688
+ },
1689
+ {
1690
+ "displayName": "Eye: off",
1691
+ "iconName": "eye-off",
1692
+ "tags": "visibility, hide",
1693
+ "group": "interface",
1694
+ "content": "\\e6cc"
1695
+ },
1696
+ {
1697
+ "displayName": "Area chart",
1698
+ "iconName": "timeline-area-chart",
1699
+ "tags": "graph, line, diagram",
1700
+ "group": "data",
1701
+ "content": "\\e6cd"
1702
+ },
1703
+ {
1704
+ "displayName": "Doughnut chart",
1705
+ "iconName": "doughnut-chart",
1706
+ "tags": "circle, section, part, graph",
1707
+ "group": "data",
1708
+ "content": "\\e6ce"
1709
+ },
1710
+ {
1711
+ "displayName": "Layer",
1712
+ "iconName": "layer",
1713
+ "tags": "zone, level",
1714
+ "group": "interface",
1715
+ "content": "\\e6cf"
1716
+ },
1717
+ {
1718
+ "displayName": "Grid",
1719
+ "iconName": "grid",
1720
+ "tags": "layout, arrangement",
1721
+ "group": "data",
1722
+ "content": "\\e6d0"
1723
+ },
1724
+ {
1725
+ "displayName": "Polygon filter",
1726
+ "iconName": "polygon-filter",
1727
+ "tags": "shape, form",
1728
+ "group": "data",
1729
+ "content": "\\e6d1"
1730
+ },
1731
+ {
1732
+ "displayName": "Add to folder",
1733
+ "iconName": "add-to-folder",
1734
+ "tags": "file, portfolio, case, import",
1735
+ "group": "file",
1736
+ "content": "\\e6d2"
1737
+ },
1738
+ {
1739
+ "displayName": "Layout: balloon",
1740
+ "iconName": "layout-balloon",
1741
+ "tags": "layout, presentation, arrangement, graph",
1742
+ "group": "data",
1743
+ "content": "\\e6d3"
1744
+ },
1745
+ {
1746
+ "displayName": "Layout: sorted clusters",
1747
+ "iconName": "layout-sorted-clusters",
1748
+ "tags": "layout, presentation, arrangement, graph",
1749
+ "group": "data",
1750
+ "content": "\\e6d4"
1751
+ },
1752
+ {
1753
+ "displayName": "Sort: ascending",
1754
+ "iconName": "sort-asc",
1755
+ "tags": "order, list, array, arrange",
1756
+ "group": "action",
1757
+ "content": "\\e6d5"
1758
+ },
1759
+ {
1760
+ "displayName": "Sort: descending",
1761
+ "iconName": "sort-desc",
1762
+ "tags": "order, list, array, arrange",
1763
+ "group": "action",
1764
+ "content": "\\e6d6"
1765
+ },
1766
+ {
1767
+ "displayName": "Small cross",
1768
+ "iconName": "small-cross",
1769
+ "tags": "cross mark, fail, delete, no, close, remove",
1770
+ "group": "action",
1771
+ "content": "\\e6d7"
1772
+ },
1773
+ {
1774
+ "displayName": "Small tick",
1775
+ "iconName": "small-tick",
1776
+ "tags": "mark, sign, ok, approved, success",
1777
+ "group": "action",
1778
+ "content": "\\e6d8"
1779
+ },
1780
+ {
1781
+ "displayName": "Power",
1782
+ "iconName": "power",
1783
+ "tags": "button, on, off",
1784
+ "group": "media",
1785
+ "content": "\\e6d9"
1786
+ },
1787
+ {
1788
+ "displayName": "Column layout",
1789
+ "iconName": "column-layout",
1790
+ "tags": "layout, arrangement",
1791
+ "group": "table",
1792
+ "content": "\\e6da"
1793
+ },
1794
+ {
1795
+ "displayName": "Arrow: top left",
1796
+ "iconName": "arrow-top-left",
1797
+ "tags": "direction, north west",
1798
+ "group": "interface",
1799
+ "content": "\\2196"
1800
+ },
1801
+ {
1802
+ "displayName": "Arrow: top right",
1803
+ "iconName": "arrow-top-right",
1804
+ "tags": "direction, north east",
1805
+ "group": "interface",
1806
+ "content": "\\2197"
1807
+ },
1808
+ {
1809
+ "displayName": "Arrow: bottom right",
1810
+ "iconName": "arrow-bottom-right",
1811
+ "tags": "direction, south east",
1812
+ "group": "interface",
1813
+ "content": "\\2198"
1814
+ },
1815
+ {
1816
+ "displayName": "Arrow: bottom left",
1817
+ "iconName": "arrow-bottom-left",
1818
+ "tags": "direction, south west",
1819
+ "group": "interface",
1820
+ "content": "\\2199"
1821
+ },
1822
+ {
1823
+ "displayName": "Mugshot",
1824
+ "iconName": "mugshot",
1825
+ "tags": "person, photograph, picture,",
1826
+ "group": "interface",
1827
+ "content": "\\e6db"
1828
+ },
1829
+ {
1830
+ "displayName": "Headset",
1831
+ "iconName": "headset",
1832
+ "tags": "headphones, call, communication",
1833
+ "group": "media",
1834
+ "content": "\\e6dc"
1835
+ },
1836
+ {
1837
+ "displayName": "Text highlight",
1838
+ "iconName": "text-highlight",
1839
+ "tags": "selector, content",
1840
+ "group": "editor",
1841
+ "content": "\\e6dd"
1842
+ },
1843
+ {
1844
+ "displayName": "Hand",
1845
+ "iconName": "hand",
1846
+ "tags": "gesture, fingers",
1847
+ "group": "interface",
1848
+ "content": "\\e6de"
1849
+ },
1850
+ {
1851
+ "displayName": "Chevron: backward",
1852
+ "iconName": "chevron-backward",
1853
+ "tags": "skip, direction",
1854
+ "group": "interface",
1855
+ "content": "\\e6df"
1856
+ },
1857
+ {
1858
+ "displayName": "Chevron: forward",
1859
+ "iconName": "chevron-forward",
1860
+ "tags": "skip, direction",
1861
+ "group": "interface",
1862
+ "content": "\\e6e0"
1863
+ },
1864
+ {
1865
+ "displayName": "Rotate: document",
1866
+ "iconName": "rotate-document",
1867
+ "tags": "turn, anti clockwise",
1868
+ "group": "editor",
1869
+ "content": "\\e6e1"
1870
+ },
1871
+ {
1872
+ "displayName": "Rotate: page",
1873
+ "iconName": "rotate-page",
1874
+ "tags": "turn, anti clockwise",
1875
+ "group": "editor",
1876
+ "content": "\\e6e2"
1877
+ },
1878
+ {
1879
+ "displayName": "Badge",
1880
+ "iconName": "badge",
1881
+ "tags": "emblem, symbol, identification, insignia, marker",
1882
+ "group": "miscellaneous",
1883
+ "content": "\\e6e3"
1884
+ },
1885
+ {
1886
+ "displayName": "Grid view",
1887
+ "iconName": "grid-view",
1888
+ "tags": "layout, arrangement",
1889
+ "group": "editor",
1890
+ "content": "\\e6e4"
1891
+ },
1892
+ {
1893
+ "displayName": "Function",
1894
+ "iconName": "function",
1895
+ "tags": "math, calculation",
1896
+ "group": "table",
1897
+ "content": "\\e6e5"
1898
+ },
1899
+ {
1900
+ "displayName": "Waterfall chart",
1901
+ "iconName": "waterfall-chart",
1902
+ "tags": "graph, diagram",
1903
+ "group": "data",
1904
+ "content": "\\e6e6"
1905
+ },
1906
+ {
1907
+ "displayName": "Stacked chart",
1908
+ "iconName": "stacked-chart",
1909
+ "tags": "bar chart",
1910
+ "group": "data",
1911
+ "content": "\\e6e7"
1912
+ },
1913
+ {
1914
+ "displayName": "Pulse",
1915
+ "iconName": "pulse",
1916
+ "tags": "medical, life, heartbeat, hospital",
1917
+ "group": "miscellaneous",
1918
+ "content": "\\e6e8"
1919
+ },
1920
+ {
1921
+ "displayName": "New person",
1922
+ "iconName": "new-person",
1923
+ "tags": "person, human, male, female, character, customer, individual, add",
1924
+ "group": "interface",
1925
+ "content": "\\e6e9"
1926
+ },
1927
+ {
1928
+ "displayName": "Exclude row",
1929
+ "iconName": "exclude-row",
1930
+ "tags": "delete, remove, table",
1931
+ "group": "table",
1932
+ "content": "\\e6ea"
1933
+ },
1934
+ {
1935
+ "displayName": "Pivot table",
1936
+ "iconName": "pivot-table",
1937
+ "tags": "rotate, axis",
1938
+ "group": "table",
1939
+ "content": "\\e6eb"
1940
+ },
1941
+ {
1942
+ "displayName": "Segmented control",
1943
+ "iconName": "segmented-control",
1944
+ "tags": "button, switch, option",
1945
+ "group": "interface",
1946
+ "content": "\\e6ec"
1947
+ },
1948
+ {
1949
+ "displayName": "Highlight",
1950
+ "iconName": "highlight",
1951
+ "tags": "select, text",
1952
+ "group": "action",
1953
+ "content": "\\e6ed"
1954
+ },
1955
+ {
1956
+ "displayName": "Filter: list",
1957
+ "iconName": "filter-list",
1958
+ "tags": "filtering, funnel, tube, pipe",
1959
+ "group": "action",
1960
+ "content": "\\e6ee"
1961
+ },
1962
+ {
1963
+ "displayName": "Cut",
1964
+ "iconName": "cut",
1965
+ "tags": "scissors",
1966
+ "group": "action",
1967
+ "content": "\\e6ef"
1968
+ },
1969
+ {
1970
+ "displayName": "Annotation",
1971
+ "iconName": "annotation",
1972
+ "tags": "note, comment, edit,",
1973
+ "group": "editor",
1974
+ "content": "\\e6f0"
1975
+ },
1976
+ {
1977
+ "displayName": "Pivot",
1978
+ "iconName": "pivot",
1979
+ "tags": "rotate, axis",
1980
+ "group": "action",
1981
+ "content": "\\e6f1"
1982
+ },
1983
+ {
1984
+ "displayName": "Ring",
1985
+ "iconName": "ring",
1986
+ "tags": "empty, circle, selection",
1987
+ "group": "miscellaneous",
1988
+ "content": "\\e6f2"
1989
+ },
1990
+ {
1991
+ "displayName": "Heat grid",
1992
+ "iconName": "heat-grid",
1993
+ "tags": "chart",
1994
+ "group": "data",
1995
+ "content": "\\e6f3"
1996
+ },
1997
+ {
1998
+ "displayName": "Gantt chart",
1999
+ "iconName": "gantt-chart",
2000
+ "tags": "bar chart, schedule, project",
2001
+ "group": "data",
2002
+ "content": "\\e6f4"
2003
+ },
2004
+ {
2005
+ "displayName": "Variable",
2006
+ "iconName": "variable",
2007
+ "tags": "math, calculation",
2008
+ "group": "table",
2009
+ "content": "\\e6f5"
2010
+ },
2011
+ {
2012
+ "displayName": "Manual",
2013
+ "iconName": "manual",
2014
+ "tags": "guide, instruction",
2015
+ "group": "interface",
2016
+ "content": "\\e6f6"
2017
+ },
2018
+ {
2019
+ "displayName": "Add row: top",
2020
+ "iconName": "add-row-top",
2021
+ "tags": "table, attach, join",
2022
+ "group": "table",
2023
+ "content": "\\e6f7"
2024
+ },
2025
+ {
2026
+ "displayName": "Add row: bottom",
2027
+ "iconName": "add-row-bottom",
2028
+ "tags": "table, attach, join",
2029
+ "group": "table",
2030
+ "content": "\\e6f8"
2031
+ },
2032
+ {
2033
+ "displayName": "Add column: left",
2034
+ "iconName": "add-column-left",
2035
+ "tags": "table, attach, join",
2036
+ "group": "table",
2037
+ "content": "\\e6f9"
2038
+ },
2039
+ {
2040
+ "displayName": "Add column: right",
2041
+ "iconName": "add-column-right",
2042
+ "tags": "table, attach, join",
2043
+ "group": "table",
2044
+ "content": "\\e6fa"
2045
+ },
2046
+ {
2047
+ "displayName": "Remove row: top",
2048
+ "iconName": "remove-row-top",
2049
+ "tags": "table, detach, delete",
2050
+ "group": "table",
2051
+ "content": "\\e6fb"
2052
+ },
2053
+ {
2054
+ "displayName": "Remove row: bottom",
2055
+ "iconName": "remove-row-bottom",
2056
+ "tags": "table, detach, delete",
2057
+ "group": "table",
2058
+ "content": "\\e6fc"
2059
+ },
2060
+ {
2061
+ "displayName": "Remove column: left",
2062
+ "iconName": "remove-column-left",
2063
+ "tags": "table, detach, delete",
2064
+ "group": "table",
2065
+ "content": "\\e6fd"
2066
+ },
2067
+ {
2068
+ "displayName": "Remove column: right",
2069
+ "iconName": "remove-column-right",
2070
+ "tags": "table, detach, delete",
2071
+ "group": "table",
2072
+ "content": "\\e6fe"
2073
+ },
2074
+ {
2075
+ "displayName": "Double chevron: left",
2076
+ "iconName": "double-chevron-left",
2077
+ "tags": "arrows, multiple, direction",
2078
+ "group": "interface",
2079
+ "content": "\\e6ff"
2080
+ },
2081
+ {
2082
+ "displayName": "Double chevron: right",
2083
+ "iconName": "double-chevron-right",
2084
+ "tags": "arrows, multiple, direction",
2085
+ "group": "interface",
2086
+ "content": "\\e701"
2087
+ },
2088
+ {
2089
+ "displayName": "Double chevron: up",
2090
+ "iconName": "double-chevron-up",
2091
+ "tags": "arrows, multiple, direction",
2092
+ "group": "interface",
2093
+ "content": "\\e702"
2094
+ },
2095
+ {
2096
+ "displayName": "Double chevron: down",
2097
+ "iconName": "double-chevron-down",
2098
+ "tags": "arrows, multiple, direction",
2099
+ "group": "interface",
2100
+ "content": "\\e703"
2101
+ },
2102
+ {
2103
+ "displayName": "Key: control",
2104
+ "iconName": "key-control",
2105
+ "tags": "interface, shortcuts, buttons",
2106
+ "group": "media",
2107
+ "content": "\\e704"
2108
+ },
2109
+ {
2110
+ "displayName": "Key: command",
2111
+ "iconName": "key-command",
2112
+ "tags": "interface, shortcuts, buttons",
2113
+ "group": "media",
2114
+ "content": "\\e705"
2115
+ },
2116
+ {
2117
+ "displayName": "Key: shift",
2118
+ "iconName": "key-shift",
2119
+ "tags": "interface, shortcuts, buttons",
2120
+ "group": "media",
2121
+ "content": "\\e706"
2122
+ },
2123
+ {
2124
+ "displayName": "Key: backspace",
2125
+ "iconName": "key-backspace",
2126
+ "tags": "interface, shortcuts, buttons",
2127
+ "group": "media",
2128
+ "content": "\\e707"
2129
+ },
2130
+ {
2131
+ "displayName": "Key: delete",
2132
+ "iconName": "key-delete",
2133
+ "tags": "interface, shortcuts, buttons",
2134
+ "group": "media",
2135
+ "content": "\\e708"
2136
+ },
2137
+ {
2138
+ "displayName": "Key: escape",
2139
+ "iconName": "key-escape",
2140
+ "tags": "interface, shortcuts, buttons",
2141
+ "group": "media",
2142
+ "content": "\\e709"
2143
+ },
2144
+ {
2145
+ "displayName": "Key: enter",
2146
+ "iconName": "key-enter",
2147
+ "tags": "interface, shortcuts, buttons",
2148
+ "group": "media",
2149
+ "content": "\\e70a"
2150
+ },
2151
+ {
2152
+ "displayName": "Calculator",
2153
+ "iconName": "calculator",
2154
+ "tags": "math, device, value, numbers, total",
2155
+ "group": "miscellaneous",
2156
+ "content": "\\e70b"
2157
+ },
2158
+ {
2159
+ "displayName": "Horizontal bar chart",
2160
+ "iconName": "horizontal-bar-chart",
2161
+ "tags": "graph, diagram",
2162
+ "group": "data",
2163
+ "content": "\\e70c"
2164
+ },
2165
+ {
2166
+ "displayName": "Small plus",
2167
+ "iconName": "small-plus",
2168
+ "tags": "sign, add, maximize, zoom in",
2169
+ "group": "action",
2170
+ "content": "\\e70d"
2171
+ },
2172
+ {
2173
+ "displayName": "Small minus",
2174
+ "iconName": "small-minus",
2175
+ "tags": "sign, remove, minimize, zoom out",
2176
+ "group": "action",
2177
+ "content": "\\e70e"
2178
+ },
2179
+ {
2180
+ "displayName": "Step chart",
2181
+ "iconName": "step-chart",
2182
+ "tags": "graph, diagram",
2183
+ "group": "data",
2184
+ "content": "\\e70f"
2185
+ },
2186
+ {
2187
+ "displayName": "Euro",
2188
+ "iconName": "euro",
2189
+ "tags": "currency, money",
2190
+ "group": "miscellaneous",
2191
+ "content": "\\20ac"
2192
+ },
2193
+ {
2194
+ "displayName": "Drag handle: vertical",
2195
+ "iconName": "drag-handle-vertical",
2196
+ "tags": "move, pull",
2197
+ "group": "action",
2198
+ "content": "\\e715"
2199
+ },
2200
+ {
2201
+ "displayName": "Drag handle: horizontal",
2202
+ "iconName": "drag-handle-horizontal",
2203
+ "tags": "move, pull",
2204
+ "group": "action",
2205
+ "content": "\\e716"
2206
+ },
2207
+ {
2208
+ "displayName": "Mobile phone",
2209
+ "iconName": "mobile-phone",
2210
+ "tags": "cellular, device, call",
2211
+ "group": "media",
2212
+ "content": "\\e717"
2213
+ },
2214
+ {
2215
+ "displayName": "Sim card",
2216
+ "iconName": "sim-card",
2217
+ "tags": "phone, cellular",
2218
+ "group": "media",
2219
+ "content": "\\e718"
2220
+ },
2221
+ {
2222
+ "displayName": "Trending: up",
2223
+ "iconName": "trending-up",
2224
+ "tags": "growth, incline, progress",
2225
+ "group": "data",
2226
+ "content": "\\e719"
2227
+ },
2228
+ {
2229
+ "displayName": "Trending: down",
2230
+ "iconName": "trending-down",
2231
+ "tags": "decrease, decline, loss",
2232
+ "group": "data",
2233
+ "content": "\\e71a"
2234
+ },
2235
+ {
2236
+ "displayName": "Curved range chart",
2237
+ "iconName": "curved-range-chart",
2238
+ "tags": "graph, diagram",
2239
+ "group": "data",
2240
+ "content": "\\e71b"
2241
+ },
2242
+ {
2243
+ "displayName": "Vertical bar chart: descending",
2244
+ "iconName": "vertical-bar-chart-desc",
2245
+ "tags": "graph, bar, histogram",
2246
+ "group": "data",
2247
+ "content": "\\e71c"
2248
+ },
2249
+ {
2250
+ "displayName": "Horizontal bar chart: descending",
2251
+ "iconName": "horizontal-bar-chart-desc",
2252
+ "tags": "graph, bar, histogram",
2253
+ "group": "data",
2254
+ "content": "\\e71d"
2255
+ },
2256
+ {
2257
+ "displayName": "Document: open",
2258
+ "iconName": "document-open",
2259
+ "tags": "paper, access",
2260
+ "group": "file",
2261
+ "content": "\\e71e"
2262
+ },
2263
+ {
2264
+ "displayName": "Document: share",
2265
+ "iconName": "document-share",
2266
+ "tags": "paper, send",
2267
+ "group": "file",
2268
+ "content": "\\e71f"
2269
+ },
2270
+ {
2271
+ "displayName": "Distribution: horizontal",
2272
+ "iconName": "horizontal-distribution",
2273
+ "tags": "alignment, layout, position",
2274
+ "group": "editor",
2275
+ "content": "\\e720"
2276
+ },
2277
+ {
2278
+ "displayName": "Distribution: vertical",
2279
+ "iconName": "vertical-distribution",
2280
+ "tags": "alignment, layout, position",
2281
+ "group": "editor",
2282
+ "content": "\\e721"
2283
+ },
2284
+ {
2285
+ "displayName": "Alignment: left",
2286
+ "iconName": "alignment-left",
2287
+ "tags": "layout, position",
2288
+ "group": "editor",
2289
+ "content": "\\e722"
2290
+ },
2291
+ {
2292
+ "displayName": "Alignment: vertical center",
2293
+ "iconName": "alignment-vertical-center",
2294
+ "tags": "layout, position",
2295
+ "group": "editor",
2296
+ "content": "\\e723"
2297
+ },
2298
+ {
2299
+ "displayName": "Alignment: right",
2300
+ "iconName": "alignment-right",
2301
+ "tags": "layout, position",
2302
+ "group": "editor",
2303
+ "content": "\\e724"
2304
+ },
2305
+ {
2306
+ "displayName": "Alignment: top",
2307
+ "iconName": "alignment-top",
2308
+ "tags": "layout, position",
2309
+ "group": "editor",
2310
+ "content": "\\e725"
2311
+ },
2312
+ {
2313
+ "displayName": "Alignment: horizontal center",
2314
+ "iconName": "alignment-horizontal-center",
2315
+ "tags": "layout, position",
2316
+ "group": "editor",
2317
+ "content": "\\e726"
2318
+ },
2319
+ {
2320
+ "displayName": "Alignment: bottom",
2321
+ "iconName": "alignment-bottom",
2322
+ "tags": "layout, position",
2323
+ "group": "editor",
2324
+ "content": "\\e727"
2325
+ },
2326
+ {
2327
+ "displayName": "Git: pull",
2328
+ "iconName": "git-pull",
2329
+ "tags": "github, repository, code, command",
2330
+ "group": "action",
2331
+ "content": "\\e728"
2332
+ },
2333
+ {
2334
+ "displayName": "Git: merge",
2335
+ "iconName": "git-merge",
2336
+ "tags": "github, repository, code, command",
2337
+ "group": "action",
2338
+ "content": "\\e729"
2339
+ },
2340
+ {
2341
+ "displayName": "Git: branch",
2342
+ "iconName": "git-branch",
2343
+ "tags": "github, repository, code, command",
2344
+ "group": "action",
2345
+ "content": "\\e72a"
2346
+ },
2347
+ {
2348
+ "displayName": "Git: commit",
2349
+ "iconName": "git-commit",
2350
+ "tags": "github, repository, code, command",
2351
+ "group": "action",
2352
+ "content": "\\e72b"
2353
+ },
2354
+ {
2355
+ "displayName": "Git: push",
2356
+ "iconName": "git-push",
2357
+ "tags": "github, repository, code, command",
2358
+ "group": "action",
2359
+ "content": "\\e72c"
2360
+ },
2361
+ {
2362
+ "displayName": "Build",
2363
+ "iconName": "build",
2364
+ "tags": "hammer, tool",
2365
+ "group": "action",
2366
+ "content": "\\e72d"
2367
+ },
2368
+ {
2369
+ "displayName": "Symbol: circle",
2370
+ "iconName": "symbol-circle",
2371
+ "tags": "shape, figure",
2372
+ "group": "interface",
2373
+ "content": "\\e72e"
2374
+ },
2375
+ {
2376
+ "displayName": "Symbol: square",
2377
+ "iconName": "symbol-square",
2378
+ "tags": "shape, figure",
2379
+ "group": "interface",
2380
+ "content": "\\e72f"
2381
+ },
2382
+ {
2383
+ "displayName": "Symbol: diamond",
2384
+ "iconName": "symbol-diamond",
2385
+ "tags": "shape, figure",
2386
+ "group": "interface",
2387
+ "content": "\\e730"
2388
+ },
2389
+ {
2390
+ "displayName": "Symbol: cross",
2391
+ "iconName": "symbol-cross",
2392
+ "tags": "shape, figure",
2393
+ "group": "interface",
2394
+ "content": "\\e731"
2395
+ },
2396
+ {
2397
+ "displayName": "Symbol: triangle up",
2398
+ "iconName": "symbol-triangle-up",
2399
+ "tags": "shape, figure",
2400
+ "group": "interface",
2401
+ "content": "\\e732"
2402
+ },
2403
+ {
2404
+ "displayName": "Symbol: triangle down",
2405
+ "iconName": "symbol-triangle-down",
2406
+ "tags": "shape, figure",
2407
+ "group": "interface",
2408
+ "content": "\\e733"
2409
+ },
2410
+ {
2411
+ "displayName": "Wrench",
2412
+ "iconName": "wrench",
2413
+ "tags": "tool, repair",
2414
+ "group": "miscellaneous",
2415
+ "content": "\\e734"
2416
+ },
2417
+ {
2418
+ "displayName": "Application",
2419
+ "iconName": "application",
2420
+ "tags": "application, browser, windows, platform",
2421
+ "group": "interface",
2422
+ "content": "\\e735"
2423
+ },
2424
+ {
2425
+ "displayName": "Send to graph",
2426
+ "iconName": "send-to-graph",
2427
+ "tags": "transfer, move",
2428
+ "group": "action",
2429
+ "content": "\\e736"
2430
+ },
2431
+ {
2432
+ "displayName": "Send to map",
2433
+ "iconName": "send-to-map",
2434
+ "tags": "transfer, move",
2435
+ "group": "action",
2436
+ "content": "\\e737"
2437
+ },
2438
+ {
2439
+ "displayName": "Join table",
2440
+ "iconName": "join-table",
2441
+ "tags": "combine, attach, connect, link, unite",
2442
+ "group": "table",
2443
+ "content": "\\e738"
2444
+ },
2445
+ {
2446
+ "displayName": "Derive column",
2447
+ "iconName": "derive-column",
2448
+ "tags": "table, obtain, get, take, develop",
2449
+ "group": "action",
2450
+ "content": "\\e739"
2451
+ },
2452
+ {
2453
+ "displayName": "Rotate image: left",
2454
+ "iconName": "image-rotate-left",
2455
+ "tags": "picture, turn, alternate",
2456
+ "group": "media",
2457
+ "content": "\\e73a"
2458
+ },
2459
+ {
2460
+ "displayName": "Rotate image: right",
2461
+ "iconName": "image-rotate-right",
2462
+ "tags": "picture, turn, alternate",
2463
+ "group": "media",
2464
+ "content": "\\e73b"
2465
+ },
2466
+ {
2467
+ "displayName": "Known vehicle",
2468
+ "iconName": "known-vehicle",
2469
+ "tags": "car, automobile, vehicle, van, drive, ride, distance, navigation, directions",
2470
+ "group": "interface",
2471
+ "content": "\\e73c"
2472
+ },
2473
+ {
2474
+ "displayName": "Unknown vehicle",
2475
+ "iconName": "unknown-vehicle",
2476
+ "tags": "car, automobile, vehicle, van, drive, ride, distance, navigation, directions",
2477
+ "group": "interface",
2478
+ "content": "\\e73d"
2479
+ },
2480
+ {
2481
+ "displayName": "Scatter plot",
2482
+ "iconName": "scatter-plot",
2483
+ "tags": "graph, diagram",
2484
+ "group": "data",
2485
+ "content": "\\e73e"
2486
+ },
2487
+ {
2488
+ "displayName": "Oil field",
2489
+ "iconName": "oil-field",
2490
+ "tags": "fuel, petroleum, gas, well, drilling, pump",
2491
+ "group": "interface",
2492
+ "content": "\\e73f"
2493
+ },
2494
+ {
2495
+ "displayName": "Rig",
2496
+ "iconName": "rig",
2497
+ "tags": "fuel, petroleum, gas, well, drilling",
2498
+ "group": "interface",
2499
+ "content": "\\e740"
2500
+ },
2501
+ {
2502
+ "displayName": "New map",
2503
+ "iconName": "map-create",
2504
+ "tags": "map, location, position, geography, world",
2505
+ "group": "interface",
2506
+ "content": "\\e741"
2507
+ },
2508
+ {
2509
+ "displayName": "Key: option",
2510
+ "iconName": "key-option",
2511
+ "tags": "interface, shortcuts, buttons",
2512
+ "group": "media",
2513
+ "content": "\\e742"
2514
+ },
2515
+ {
2516
+ "displayName": "List: detail view",
2517
+ "iconName": "list-detail-view",
2518
+ "tags": "agenda, four lines, table",
2519
+ "group": "table",
2520
+ "content": "\\e743"
2521
+ },
2522
+ {
2523
+ "displayName": "Swap: vertical",
2524
+ "iconName": "swap-vertical",
2525
+ "tags": "direction, position, opposite, inverse",
2526
+ "group": "interface",
2527
+ "content": "\\e744"
2528
+ },
2529
+ {
2530
+ "displayName": "Swap: horizontal",
2531
+ "iconName": "swap-horizontal",
2532
+ "tags": "direction, position, opposite, inverse",
2533
+ "group": "interface",
2534
+ "content": "\\e745"
2535
+ },
2536
+ {
2537
+ "displayName": "Numbered list",
2538
+ "iconName": "numbered-list",
2539
+ "tags": "order, list, array, arrange",
2540
+ "group": "action",
2541
+ "content": "\\e746"
2542
+ },
2543
+ {
2544
+ "displayName": "New grid item",
2545
+ "iconName": "new-grid-item",
2546
+ "tags": "layout, arrangement, add",
2547
+ "group": "editor",
2548
+ "content": "\\e747"
2549
+ },
2550
+ {
2551
+ "displayName": "Git: repo",
2552
+ "iconName": "git-repo",
2553
+ "tags": "github, repository, code, command",
2554
+ "group": "action",
2555
+ "content": "\\e748"
2556
+ },
2557
+ {
2558
+ "displayName": "Git: new branch",
2559
+ "iconName": "git-new-branch",
2560
+ "tags": "github, repository, code, command",
2561
+ "group": "action",
2562
+ "content": "\\e749"
2563
+ },
2564
+ {
2565
+ "displayName": "Manually entered data",
2566
+ "iconName": "manually-entered-data",
2567
+ "tags": "input, human",
2568
+ "group": "editor",
2569
+ "content": "\\e74a"
2570
+ },
2571
+ {
2572
+ "displayName": "Airplane",
2573
+ "iconName": "airplane",
2574
+ "tags": "flight, jet, travel, trip, transport, take-off",
2575
+ "group": "interface",
2576
+ "content": "\\e74b"
2577
+ },
2578
+ {
2579
+ "displayName": "Merge columns",
2580
+ "iconName": "merge-columns",
2581
+ "tags": "layout, change, two, combine, unite",
2582
+ "group": "table",
2583
+ "content": "\\e74f"
2584
+ },
2585
+ {
2586
+ "displayName": "Split columns",
2587
+ "iconName": "split-columns",
2588
+ "tags": "layout, change, two, break, divide",
2589
+ "group": "table",
2590
+ "content": "\\e750"
2591
+ },
2592
+ {
2593
+ "displayName": "Dashboard",
2594
+ "iconName": "dashboard",
2595
+ "tags": "panel, control, gauge, instrument, meter",
2596
+ "group": "interface",
2597
+ "content": "\\e751"
2598
+ },
2599
+ {
2600
+ "displayName": "Publish function",
2601
+ "iconName": "publish-function",
2602
+ "tags": "math, calculation, share",
2603
+ "group": "table",
2604
+ "content": "\\e752"
2605
+ },
2606
+ {
2607
+ "displayName": "Path",
2608
+ "iconName": "path",
2609
+ "tags": "hierarchy, trail, steps",
2610
+ "group": "interface",
2611
+ "content": "\\e753"
2612
+ },
2613
+ {
2614
+ "displayName": "Moon",
2615
+ "iconName": "moon",
2616
+ "tags": "night, sky, dark",
2617
+ "group": "miscellaneous",
2618
+ "content": "\\e754"
2619
+ },
2620
+ {
2621
+ "displayName": "Remove column",
2622
+ "iconName": "remove-column",
2623
+ "tags": "table, detach, delete",
2624
+ "group": "table",
2625
+ "content": "\\e755"
2626
+ },
2627
+ {
2628
+ "displayName": "Numerical",
2629
+ "iconName": "numerical",
2630
+ "tags": "numbers, order, sort, arrange, array",
2631
+ "group": "action",
2632
+ "content": "\\e756"
2633
+ },
2634
+ {
2635
+ "displayName": "Key: tab",
2636
+ "iconName": "key-tab",
2637
+ "tags": "interface, shortcuts, buttons",
2638
+ "group": "media",
2639
+ "content": "\\e757"
2640
+ },
2641
+ {
2642
+ "displayName": "Regression chart",
2643
+ "iconName": "regression-chart",
2644
+ "tags": "graph, line, chart",
2645
+ "group": "data",
2646
+ "content": "\\e758"
2647
+ },
2648
+ {
2649
+ "displayName": "Translate",
2650
+ "iconName": "translate",
2651
+ "tags": "language, convert",
2652
+ "group": "action",
2653
+ "content": "\\e759"
2654
+ },
2655
+ {
2656
+ "displayName": "Eye: on",
2657
+ "iconName": "eye-on",
2658
+ "tags": "visibility, show",
2659
+ "group": "interface",
2660
+ "content": "\\e75a"
2661
+ },
2662
+ {
2663
+ "displayName": "Vertical bar chart: ascending",
2664
+ "iconName": "vertical-bar-chart-asc",
2665
+ "tags": "graph, bar, histogram",
2666
+ "group": "data",
2667
+ "content": "\\e75b"
2668
+ },
2669
+ {
2670
+ "displayName": "Horizontal bar chart: ascending",
2671
+ "iconName": "horizontal-bar-chart-asc",
2672
+ "tags": "graph, bar, histogram",
2673
+ "group": "data",
2674
+ "content": "\\e75c"
2675
+ },
2676
+ {
2677
+ "displayName": "Grouped bar chart",
2678
+ "iconName": "grouped-bar-chart",
2679
+ "tags": "graph, bar, chart",
2680
+ "group": "data",
2681
+ "content": "\\e75d"
2682
+ },
2683
+ {
2684
+ "displayName": "Full stacked chart",
2685
+ "iconName": "full-stacked-chart",
2686
+ "tags": "graph, bar, chart",
2687
+ "group": "data",
2688
+ "content": "\\e75e"
2689
+ },
2690
+ {
2691
+ "displayName": "Endorsed",
2692
+ "iconName": "endorsed",
2693
+ "tags": "tick, mark, sign, ok, approved, success",
2694
+ "group": "action",
2695
+ "content": "\\e75f"
2696
+ },
2697
+ {
2698
+ "displayName": "Follower",
2699
+ "iconName": "follower",
2700
+ "tags": "person, human, male, female, character, customer, individual, social",
2701
+ "group": "interface",
2702
+ "content": "\\e760"
2703
+ },
2704
+ {
2705
+ "displayName": "Following",
2706
+ "iconName": "following",
2707
+ "tags": "person, human, male, female, character, customer, individual, social",
2708
+ "group": "interface",
2709
+ "content": "\\e761"
2710
+ },
2711
+ {
2712
+ "displayName": "Menu",
2713
+ "iconName": "menu",
2714
+ "tags": "navigation, lines, list",
2715
+ "group": "interface",
2716
+ "content": "\\e762"
2717
+ },
2718
+ {
2719
+ "displayName": "Collapse all",
2720
+ "iconName": "collapse-all",
2721
+ "tags": "arrows, chevron, reduce",
2722
+ "group": "interface",
2723
+ "content": "\\e763"
2724
+ },
2725
+ {
2726
+ "displayName": "Expand all",
2727
+ "iconName": "expand-all",
2728
+ "tags": "arrows, chevron, enlarge",
2729
+ "group": "interface",
2730
+ "content": "\\e764"
2731
+ },
2732
+ {
2733
+ "displayName": "Intersection",
2734
+ "iconName": "intersection",
2735
+ "tags": "circles, combine, cross",
2736
+ "group": "action",
2737
+ "content": "\\e765"
2738
+ },
2739
+ {
2740
+ "displayName": "Blocked person",
2741
+ "iconName": "blocked-person",
2742
+ "tags": "person, human, male, female, character, customer, individual, social, banned, prohibited",
2743
+ "group": "interface",
2744
+ "content": "\\e768"
2745
+ },
2746
+ {
2747
+ "displayName": "Slash",
2748
+ "iconName": "slash",
2749
+ "tags": "divide, separate",
2750
+ "group": "action",
2751
+ "content": "\\e769"
2752
+ },
2753
+ {
2754
+ "displayName": "Percentage",
2755
+ "iconName": "percentage",
2756
+ "tags": "modulo, modulus",
2757
+ "group": "action",
2758
+ "content": "\\e76a"
2759
+ },
2760
+ {
2761
+ "displayName": "Satellite",
2762
+ "iconName": "satellite",
2763
+ "tags": "communication, space",
2764
+ "group": "miscellaneous",
2765
+ "content": "\\e76b"
2766
+ },
2767
+ {
2768
+ "displayName": "Paragraph",
2769
+ "iconName": "paragraph",
2770
+ "tags": "text, chapter, division, part",
2771
+ "group": "editor",
2772
+ "content": "\\e76c"
2773
+ },
2774
+ {
2775
+ "displayName": "Bank account",
2776
+ "iconName": "bank-account",
2777
+ "tags": "money, finance, funds",
2778
+ "group": "miscellaneous",
2779
+ "content": "\\e76f"
2780
+ },
2781
+ {
2782
+ "displayName": "Cell tower",
2783
+ "iconName": "cell-tower",
2784
+ "tags": "signal, communication, radio, mast",
2785
+ "group": "miscellaneous",
2786
+ "content": "\\e770"
2787
+ },
2788
+ {
2789
+ "displayName": "ID number",
2790
+ "iconName": "id-number",
2791
+ "tags": "identification, person, document",
2792
+ "group": "miscellaneous",
2793
+ "content": "\\e771"
2794
+ },
2795
+ {
2796
+ "displayName": "IP address",
2797
+ "iconName": "ip-address",
2798
+ "tags": "internet, protocol, number, id, network",
2799
+ "group": "miscellaneous",
2800
+ "content": "\\e772"
2801
+ },
2802
+ {
2803
+ "displayName": "Eraser",
2804
+ "iconName": "eraser",
2805
+ "tags": "delete, remove",
2806
+ "group": "editor",
2807
+ "content": "\\e773"
2808
+ },
2809
+ {
2810
+ "displayName": "Issue",
2811
+ "iconName": "issue",
2812
+ "tags": "circle, notification, failure, circle, exclamation mark, sign, problem",
2813
+ "group": "interface",
2814
+ "content": "\\e774"
2815
+ },
2816
+ {
2817
+ "displayName": "Issue: new",
2818
+ "iconName": "issue-new",
2819
+ "tags": "circle, notification, failure, circle, exclamation mark, sign, problem",
2820
+ "group": "interface",
2821
+ "content": "\\e775"
2822
+ },
2823
+ {
2824
+ "displayName": "Issue: closed",
2825
+ "iconName": "issue-closed",
2826
+ "tags": "circle, notification, failure, circle, exclamation mark, sign, problem",
2827
+ "group": "interface",
2828
+ "content": "\\e776"
2829
+ },
2830
+ {
2831
+ "displayName": "Panel: stats",
2832
+ "iconName": "panel-stats",
2833
+ "tags": "sidebar, layout, list",
2834
+ "group": "table",
2835
+ "content": "\\e777"
2836
+ },
2837
+ {
2838
+ "displayName": "Panel: table",
2839
+ "iconName": "panel-table",
2840
+ "tags": "sidebar, layout, spreadsheet",
2841
+ "group": "table",
2842
+ "content": "\\e778"
2843
+ },
2844
+ {
2845
+ "displayName": "Tick circle",
2846
+ "iconName": "tick-circle",
2847
+ "tags": "mark, sign, ok, approved, success",
2848
+ "group": "action",
2849
+ "content": "\\e779"
2850
+ },
2851
+ {
2852
+ "displayName": "Prescription",
2853
+ "iconName": "prescription",
2854
+ "tags": "instruction, direction, medicine, drug, medication, mixture",
2855
+ "group": "miscellaneous",
2856
+ "content": "\\e78a"
2857
+ },
2858
+ {
2859
+ "displayName": "Prescription: new",
2860
+ "iconName": "new-prescription",
2861
+ "tags": "instruction, direction, medicine, drug, medication, mixture",
2862
+ "group": "miscellaneous",
2863
+ "content": "\\e78b"
2864
+ },
2865
+ {
2866
+ "displayName": "Filter: keep",
2867
+ "iconName": "filter-keep",
2868
+ "tags": "filtering, funnel, tube, pipe, retain, stay",
2869
+ "group": "action",
2870
+ "content": "\\e78c"
2871
+ },
2872
+ {
2873
+ "displayName": "Filter: remove",
2874
+ "iconName": "filter-remove",
2875
+ "tags": "filtering, funnel, tube, pipe, delete, detach, discard, dismiss",
2876
+ "group": "action",
2877
+ "content": "\\e78d"
2878
+ },
2879
+ {
2880
+ "displayName": "Key",
2881
+ "iconName": "key",
2882
+ "tags": "lock, unlock, open, security, password, access",
2883
+ "group": "interface",
2884
+ "content": "\\e78e"
2885
+ },
2886
+ {
2887
+ "displayName": "Feed: subscribed",
2888
+ "iconName": "feed-subscribed",
2889
+ "tags": "rss, feed, tick, check",
2890
+ "group": "interface",
2891
+ "content": "\\e78f"
2892
+ },
2893
+ {
2894
+ "displayName": "Widget: button",
2895
+ "iconName": "widget-button",
2896
+ "tags": "element, click, press",
2897
+ "group": "interface",
2898
+ "content": "\\e790"
2899
+ },
2900
+ {
2901
+ "displayName": "Widget: header",
2902
+ "iconName": "widget-header",
2903
+ "tags": "element, layout, top",
2904
+ "group": "interface",
2905
+ "content": "\\e791"
2906
+ },
2907
+ {
2908
+ "displayName": "Widget: footer",
2909
+ "iconName": "widget-footer",
2910
+ "tags": "element, layout, bottom",
2911
+ "group": "interface",
2912
+ "content": "\\e792"
2913
+ },
2914
+ {
2915
+ "displayName": "Header: one",
2916
+ "iconName": "header-one",
2917
+ "tags": "paragraph styling, formatting",
2918
+ "group": "editor",
2919
+ "content": "\\e793"
2920
+ },
2921
+ {
2922
+ "displayName": "Header: two",
2923
+ "iconName": "header-two",
2924
+ "tags": "paragraph styling, formatting",
2925
+ "group": "editor",
2926
+ "content": "\\e794"
2927
+ },
2928
+ {
2929
+ "displayName": "Form",
2930
+ "iconName": "form",
2931
+ "tags": "response, fill",
2932
+ "group": "data",
2933
+ "content": "\\e795"
2934
+ },
2935
+ {
2936
+ "displayName": "Series: add",
2937
+ "iconName": "series-add",
2938
+ "tags": "timeseries, plot, line, data, chart, new, create",
2939
+ "group": "data",
2940
+ "content": "\\e796"
2941
+ },
2942
+ {
2943
+ "displayName": "Series: search",
2944
+ "iconName": "series-search",
2945
+ "tags": "timeseries, plot, line, data, chart, find, filter",
2946
+ "group": "data",
2947
+ "content": "\\e797"
2948
+ },
2949
+ {
2950
+ "displayName": "Series: filtered",
2951
+ "iconName": "series-filtered",
2952
+ "tags": "timeseries, plot, line, data, chart, reduce, reduced, search",
2953
+ "group": "data",
2954
+ "content": "\\e798"
2955
+ },
2956
+ {
2957
+ "displayName": "Series: derived",
2958
+ "iconName": "series-derived",
2959
+ "tags": "timeseries, plot, line, data, chart, transform, transformed, compute, computed, modify, modified, alter, altered, adjust, adjusted",
2960
+ "group": "data",
2961
+ "content": "\\e799"
2962
+ },
2963
+ {
2964
+ "displayName": "Series: configuration",
2965
+ "iconName": "series-configuration",
2966
+ "tags": " timeseries, plot, line, data, chart, edit, modify, customize, adjust, alter, transform",
2967
+ "group": "data",
2968
+ "content": "\\e79a"
2969
+ },
2970
+ {
2971
+ "displayName": "Console",
2972
+ "iconName": "console",
2973
+ "tags": "terminal, coding",
2974
+ "group": "interface",
2975
+ "content": "\\e79b"
2976
+ },
2977
+ {
2978
+ "displayName": "Compass",
2979
+ "iconName": "compass",
2980
+ "tags": "map, direction",
2981
+ "group": "interface",
2982
+ "content": "\\e79c"
2983
+ },
2984
+ {
2985
+ "displayName": "Walk",
2986
+ "iconName": "walk",
2987
+ "tags": "transportation, run, move",
2988
+ "group": "interface",
2989
+ "content": "\\e79d"
2990
+ },
2991
+ {
2992
+ "displayName": "Taxi",
2993
+ "iconName": "taxi",
2994
+ "tags": "transportation, car, move",
2995
+ "group": "interface",
2996
+ "content": "\\e79e"
2997
+ },
2998
+ {
2999
+ "displayName": "Train",
3000
+ "iconName": "train",
3001
+ "tags": "transportation, public, move",
3002
+ "group": "interface",
3003
+ "content": "\\e79f"
3004
+ },
3005
+ {
3006
+ "displayName": "Heart: broken",
3007
+ "iconName": "heart-broken",
3008
+ "tags": "love, like, organ, human, feelings, split, torn, failed, health",
3009
+ "group": "miscellaneous",
3010
+ "content": "\\e7a2"
3011
+ },
3012
+ {
3013
+ "displayName": "Join: inner",
3014
+ "iconName": "inner-join",
3015
+ "tags": "circles, combine, connect, add, part, slice",
3016
+ "group": "action",
3017
+ "content": "\\e7a3"
3018
+ },
3019
+ {
3020
+ "displayName": "Join: left",
3021
+ "iconName": "left-join",
3022
+ "tags": "circles, combine, connect, add, part, slice",
3023
+ "group": "action",
3024
+ "content": "\\e7a4"
3025
+ },
3026
+ {
3027
+ "displayName": "Join: right",
3028
+ "iconName": "right-join",
3029
+ "tags": "circles, combine, connect, add, part, slice",
3030
+ "group": "action",
3031
+ "content": "\\e7a5"
3032
+ },
3033
+ {
3034
+ "displayName": "Strikethrough",
3035
+ "iconName": "strikethrough",
3036
+ "tags": "typography, text, font-style, line, removed",
3037
+ "group": "editor",
3038
+ "content": "\\e7a6"
3039
+ },
3040
+ {
3041
+ "displayName": "Updated",
3042
+ "iconName": "updated",
3043
+ "tags": "time, recent, success",
3044
+ "group": "interface",
3045
+ "content": "\\e7a7"
3046
+ },
3047
+ {
3048
+ "displayName": "Outdated",
3049
+ "iconName": "outdated",
3050
+ "tags": "time, error, warning",
3051
+ "group": "interface",
3052
+ "content": "\\e7a8"
3053
+ },
3054
+ {
3055
+ "displayName": "Flame",
3056
+ "iconName": "flame",
3057
+ "tags": "fire, trendy, hot, popular",
3058
+ "group": "miscellaneous",
3059
+ "content": "\\e7a9"
3060
+ },
3061
+ {
3062
+ "displayName": "Folder: new",
3063
+ "iconName": "folder-new",
3064
+ "tags": "create, group, organize, sort",
3065
+ "group": "file",
3066
+ "content": "\\e7b0"
3067
+ },
3068
+ {
3069
+ "displayName": "Mountain",
3070
+ "iconName": "mountain",
3071
+ "tags": "summit, climb, peak",
3072
+ "group": "miscellaneous",
3073
+ "content": "\\e7b1"
3074
+ },
3075
+ {
3076
+ "displayName": "Shield",
3077
+ "iconName": "shield",
3078
+ "tags": "protect, protection, secure, security, safe, safety, privacy, marking, control",
3079
+ "group": "miscellaneous",
3080
+ "content": "\\e7b2"
3081
+ },
3082
+ {
3083
+ "displayName": "Tree diagram",
3084
+ "iconName": "diagram-tree",
3085
+ "tags": "organization, chart, hierarchy, relationship, reference",
3086
+ "group": "data",
3087
+ "content": "\\e7b3"
3088
+ },
3089
+ {
3090
+ "displayName": "Crown",
3091
+ "iconName": "crown",
3092
+ "tags": "crown, hat, role, level, permission, king",
3093
+ "group": "miscellaneous",
3094
+ "content": "\\e7b4"
3095
+ },
3096
+ {
3097
+ "displayName": "Globe: network",
3098
+ "iconName": "globe-network",
3099
+ "tags": "planet, earth, map, world, www, website",
3100
+ "group": "miscellaneous",
3101
+ "content": "\\e7b5"
3102
+ },
3103
+ {
3104
+ "displayName": "Snowflake",
3105
+ "iconName": "snowflake",
3106
+ "tags": "weather, winter, freeze, ice",
3107
+ "group": "miscellaneous",
3108
+ "content": "\\e7b6"
3109
+ },
3110
+ {
3111
+ "displayName": "Tree",
3112
+ "iconName": "tree",
3113
+ "tags": "forest, wood, landmark",
3114
+ "group": "miscellaneous",
3115
+ "content": "\\e7b7"
3116
+ },
3117
+ {
3118
+ "displayName": "Notifications: updated",
3119
+ "iconName": "notifications-updated",
3120
+ "tags": "notifications, bell, alarm, notice, warning",
3121
+ "group": "interface",
3122
+ "content": "\\e7b8"
3123
+ },
3124
+ {
3125
+ "displayName": "List: columns",
3126
+ "iconName": "list-columns",
3127
+ "tags": "layout, arrangement, four lines, table",
3128
+ "group": "table",
3129
+ "content": "\\e7b9"
3130
+ },
3131
+ {
3132
+ "displayName": "Flow: linear",
3133
+ "iconName": "flow-linear",
3134
+ "tags": "workflow, edge, node, step",
3135
+ "group": "data",
3136
+ "content": "\\e7c0"
3137
+ },
3138
+ {
3139
+ "displayName": "Flow: branch",
3140
+ "iconName": "flow-branch",
3141
+ "tags": "workflow, edge, node, fork",
3142
+ "group": "data",
3143
+ "content": "\\e7c1"
3144
+ },
3145
+ {
3146
+ "displayName": "Flow: review",
3147
+ "iconName": "flow-review",
3148
+ "tags": "workflow, edge, node, reverse",
3149
+ "group": "data",
3150
+ "content": "\\e7c2"
3151
+ },
3152
+ {
3153
+ "displayName": "Flow: review branch",
3154
+ "iconName": "flow-review-branch",
3155
+ "tags": "workflow, edge, node, fork",
3156
+ "group": "data",
3157
+ "content": "\\e7c3"
3158
+ },
3159
+ {
3160
+ "displayName": "Flow: end",
3161
+ "iconName": "flow-end",
3162
+ "tags": "workflow, edge, node, complete, finished, final, last",
3163
+ "group": "data",
3164
+ "content": "\\e7c4"
3165
+ },
3166
+ {
3167
+ "displayName": "Clean",
3168
+ "iconName": "clean",
3169
+ "tags": "correct, cleanse, clear, purify, stars",
3170
+ "group": "action",
3171
+ "content": "\\e7c5"
3172
+ },
3173
+ {
3174
+ "displayName": "Table: filtered",
3175
+ "iconName": "th-filtered",
3176
+ "tags": "index, rows, columns, agenda, list, spreadsheet, filtering, funnel",
3177
+ "group": "table",
3178
+ "content": "\\e7c6"
3179
+ },
3180
+ {
3181
+ "displayName": "Lifesaver",
3182
+ "iconName": "lifesaver",
3183
+ "tags": "help, support, aid, advice",
3184
+ "group": "miscellaneous",
3185
+ "content": "\\e7c7"
3186
+ },
3187
+ {
3188
+ "displayName": "Cube",
3189
+ "iconName": "cube",
3190
+ "tags": "shape, 3d, object",
3191
+ "group": "miscellaneous",
3192
+ "content": "\\e7c8"
3193
+ },
3194
+ {
3195
+ "displayName": "Cube: add",
3196
+ "iconName": "cube-add",
3197
+ "tags": "shape, 3d, object",
3198
+ "group": "miscellaneous",
3199
+ "content": "\\e7c9"
3200
+ },
3201
+ {
3202
+ "displayName": "Cube: remove",
3203
+ "iconName": "cube-remove",
3204
+ "tags": "shape, 3d, object",
3205
+ "group": "miscellaneous",
3206
+ "content": "\\e7d0"
3207
+ },
3208
+ {
3209
+ "displayName": "Inbox: filtered",
3210
+ "iconName": "inbox-filtered",
3211
+ "tags": "folder, mail, file, message, funnel",
3212
+ "group": "file",
3213
+ "content": "\\e7d1"
3214
+ },
3215
+ {
3216
+ "displayName": "Inbox: geo",
3217
+ "iconName": "inbox-geo",
3218
+ "tags": "folder, mail, file, message, geography, location, area, globe",
3219
+ "group": "file",
3220
+ "content": "\\e7d2"
3221
+ },
3222
+ {
3223
+ "displayName": "Inbox: search",
3224
+ "iconName": "inbox-search",
3225
+ "tags": "folder, mail, file, message, inspection, exploration, magnifying glass",
3226
+ "group": "file",
3227
+ "content": "\\e7d3"
3228
+ },
3229
+ {
3230
+ "displayName": "Inbox: update",
3231
+ "iconName": "inbox-update",
3232
+ "tags": "folder, mail, file, message, notifications, warning",
3233
+ "group": "file",
3234
+ "content": "\\e7d4"
3235
+ }
3236
+ ]