iconimports.ts 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. /*-----------------------------------------------------------------------------
  2. | Copyright (c) Jupyter Development Team.
  3. | Distributed under the terms of the Modified BSD License.
  4. |----------------------------------------------------------------------------*/
  5. /* This file was auto-generated by ensureUiComponents() in @jupyterlab/buildutils */
  6. import { JLIcon } from './jlicon';
  7. // icon svg import statements
  8. import caretDownEmptyThinSvg from '../../style/icons/arrow/caret-down-empty-thin.svg';
  9. import caretDownEmptySvg from '../../style/icons/arrow/caret-down-empty.svg';
  10. import caretDownSvg from '../../style/icons/arrow/caret-down.svg';
  11. import caretLeftSvg from '../../style/icons/arrow/caret-left.svg';
  12. import caretRightSvg from '../../style/icons/arrow/caret-right.svg';
  13. import caretUpEmptyThinSvg from '../../style/icons/arrow/caret-up-empty-thin.svg';
  14. import caretUpSvg from '../../style/icons/arrow/caret-up.svg';
  15. import consoleSvg from '../../style/icons/filetype/console.svg';
  16. import fileSvg from '../../style/icons/filetype/file.svg';
  17. import folderSvg from '../../style/icons/filetype/folder.svg';
  18. import html5Svg from '../../style/icons/filetype/html5.svg';
  19. import imageSvg from '../../style/icons/filetype/image.svg';
  20. import inspectorSvg from '../../style/icons/filetype/inspector.svg';
  21. import jsonSvg from '../../style/icons/filetype/json.svg';
  22. import keyboardSvg from '../../style/icons/filetype/keyboard.svg';
  23. import launcherSvg from '../../style/icons/filetype/launcher.svg';
  24. import markdownSvg from '../../style/icons/filetype/markdown.svg';
  25. import notebookSvg from '../../style/icons/filetype/notebook.svg';
  26. import pythonSvg from '../../style/icons/filetype/python.svg';
  27. import rKernelSvg from '../../style/icons/filetype/r-kernel.svg';
  28. import reactSvg from '../../style/icons/filetype/react.svg';
  29. import settingsSvg from '../../style/icons/filetype/settings.svg';
  30. import spreadsheetSvg from '../../style/icons/filetype/spreadsheet.svg';
  31. import textEditorSvg from '../../style/icons/filetype/text-editor.svg';
  32. import vegaSvg from '../../style/icons/filetype/vega.svg';
  33. import yamlSvg from '../../style/icons/filetype/yaml.svg';
  34. import jupyterFaviconSvg from '../../style/icons/jupyter/jupyter-favicon.svg';
  35. import jupyterSvg from '../../style/icons/jupyter/jupyter.svg';
  36. import jupyterlabWordmarkSvg from '../../style/icons/jupyter/jupyterlab-wordmark.svg';
  37. import caseSensitiveSvg from '../../style/icons/search/case-sensitive.svg';
  38. import regexSvg from '../../style/icons/search/regex.svg';
  39. import buildSvg from '../../style/icons/sidebar/build.svg';
  40. import extensionSvg from '../../style/icons/sidebar/extension.svg';
  41. import paletteSvg from '../../style/icons/sidebar/palette.svg';
  42. import runningSvg from '../../style/icons/sidebar/running.svg';
  43. import tabSvg from '../../style/icons/sidebar/tab.svg';
  44. import kernelSvg from '../../style/icons/statusbar/kernel.svg';
  45. import lineFormSvg from '../../style/icons/statusbar/line-form.svg';
  46. import listSvg from '../../style/icons/statusbar/list.svg';
  47. import notTrustedSvg from '../../style/icons/statusbar/not-trusted.svg';
  48. import terminalSvg from '../../style/icons/statusbar/terminal.svg';
  49. import trustedSvg from '../../style/icons/statusbar/trusted.svg';
  50. import addSvg from '../../style/icons/toolbar/add.svg';
  51. import bugSvg from '../../style/icons/toolbar/bug.svg';
  52. import checkSvg from '../../style/icons/toolbar/check.svg';
  53. import circleEmptySvg from '../../style/icons/toolbar/circle-empty.svg';
  54. import circleSvg from '../../style/icons/toolbar/circle.svg';
  55. import closeSvg from '../../style/icons/toolbar/close.svg';
  56. import copySvg from '../../style/icons/toolbar/copy.svg';
  57. import cutSvg from '../../style/icons/toolbar/cut.svg';
  58. import downloadSvg from '../../style/icons/toolbar/download.svg';
  59. import editSvg from '../../style/icons/toolbar/edit.svg';
  60. import ellipsesSvg from '../../style/icons/toolbar/ellipses.svg';
  61. import fileUploadSvg from '../../style/icons/toolbar/file-upload.svg';
  62. import filterListSvg from '../../style/icons/toolbar/filter-list.svg';
  63. import linkSvg from '../../style/icons/toolbar/link.svg';
  64. import newFolderSvg from '../../style/icons/toolbar/new-folder.svg';
  65. import pasteSvg from '../../style/icons/toolbar/paste.svg';
  66. import refreshSvg from '../../style/icons/toolbar/refresh.svg';
  67. import runSvg from '../../style/icons/toolbar/run.svg';
  68. import saveSvg from '../../style/icons/toolbar/save.svg';
  69. import searchSvg from '../../style/icons/toolbar/search.svg';
  70. import stopSvg from '../../style/icons/toolbar/stop.svg';
  71. import undoSvg from '../../style/icons/toolbar/undo.svg';
  72. // JLIcon instance construction
  73. export const caretDownEmptyThinIcon = new JLIcon({ name: 'ui-components:caret-down-empty-thin', svgstr: caretDownEmptyThinSvg });
  74. export const caretDownEmptyIcon = new JLIcon({ name: 'ui-components:caret-down-empty', svgstr: caretDownEmptySvg });
  75. export const caretDownIcon = new JLIcon({ name: 'ui-components:caret-down', svgstr: caretDownSvg });
  76. export const caretLeftIcon = new JLIcon({ name: 'ui-components:caret-left', svgstr: caretLeftSvg });
  77. export const caretRightIcon = new JLIcon({ name: 'ui-components:caret-right', svgstr: caretRightSvg });
  78. export const caretUpEmptyThinIcon = new JLIcon({ name: 'ui-components:caret-up-empty-thin', svgstr: caretUpEmptyThinSvg });
  79. export const caretUpIcon = new JLIcon({ name: 'ui-components:caret-up', svgstr: caretUpSvg });
  80. export const consoleIcon = new JLIcon({ name: 'ui-components:console', svgstr: consoleSvg });
  81. export const fileIcon = new JLIcon({ name: 'ui-components:file', svgstr: fileSvg });
  82. export const folderIcon = new JLIcon({ name: 'ui-components:folder', svgstr: folderSvg });
  83. export const html5Icon = new JLIcon({ name: 'ui-components:html5', svgstr: html5Svg });
  84. export const imageIcon = new JLIcon({ name: 'ui-components:image', svgstr: imageSvg });
  85. export const inspectorIcon = new JLIcon({ name: 'ui-components:inspector', svgstr: inspectorSvg });
  86. export const jsonIcon = new JLIcon({ name: 'ui-components:json', svgstr: jsonSvg });
  87. export const keyboardIcon = new JLIcon({ name: 'ui-components:keyboard', svgstr: keyboardSvg });
  88. export const launcherIcon = new JLIcon({ name: 'ui-components:launcher', svgstr: launcherSvg });
  89. export const markdownIcon = new JLIcon({ name: 'ui-components:markdown', svgstr: markdownSvg });
  90. export const notebookIcon = new JLIcon({ name: 'ui-components:notebook', svgstr: notebookSvg });
  91. export const pythonIcon = new JLIcon({ name: 'ui-components:python', svgstr: pythonSvg });
  92. export const rKernelIcon = new JLIcon({ name: 'ui-components:r-kernel', svgstr: rKernelSvg });
  93. export const reactIcon = new JLIcon({ name: 'ui-components:react', svgstr: reactSvg });
  94. export const settingsIcon = new JLIcon({ name: 'ui-components:settings', svgstr: settingsSvg });
  95. export const spreadsheetIcon = new JLIcon({ name: 'ui-components:spreadsheet', svgstr: spreadsheetSvg });
  96. export const textEditorIcon = new JLIcon({ name: 'ui-components:text-editor', svgstr: textEditorSvg });
  97. export const vegaIcon = new JLIcon({ name: 'ui-components:vega', svgstr: vegaSvg });
  98. export const yamlIcon = new JLIcon({ name: 'ui-components:yaml', svgstr: yamlSvg });
  99. export const jupyterFaviconIcon = new JLIcon({ name: 'ui-components:jupyter-favicon', svgstr: jupyterFaviconSvg });
  100. export const jupyterIcon = new JLIcon({ name: 'ui-components:jupyter', svgstr: jupyterSvg });
  101. export const jupyterlabWordmarkIcon = new JLIcon({ name: 'ui-components:jupyterlab-wordmark', svgstr: jupyterlabWordmarkSvg });
  102. export const caseSensitiveIcon = new JLIcon({ name: 'ui-components:case-sensitive', svgstr: caseSensitiveSvg });
  103. export const regexIcon = new JLIcon({ name: 'ui-components:regex', svgstr: regexSvg });
  104. export const buildIcon = new JLIcon({ name: 'ui-components:build', svgstr: buildSvg });
  105. export const extensionIcon = new JLIcon({ name: 'ui-components:extension', svgstr: extensionSvg });
  106. export const paletteIcon = new JLIcon({ name: 'ui-components:palette', svgstr: paletteSvg });
  107. export const runningIcon = new JLIcon({ name: 'ui-components:running', svgstr: runningSvg });
  108. export const tabIcon = new JLIcon({ name: 'ui-components:tab', svgstr: tabSvg });
  109. export const kernelIcon = new JLIcon({ name: 'ui-components:kernel', svgstr: kernelSvg });
  110. export const lineFormIcon = new JLIcon({ name: 'ui-components:line-form', svgstr: lineFormSvg });
  111. export const listIcon = new JLIcon({ name: 'ui-components:list', svgstr: listSvg });
  112. export const notTrustedIcon = new JLIcon({ name: 'ui-components:not-trusted', svgstr: notTrustedSvg });
  113. export const terminalIcon = new JLIcon({ name: 'ui-components:terminal', svgstr: terminalSvg });
  114. export const trustedIcon = new JLIcon({ name: 'ui-components:trusted', svgstr: trustedSvg });
  115. export const addIcon = new JLIcon({ name: 'ui-components:add', svgstr: addSvg });
  116. export const bugIcon = new JLIcon({ name: 'ui-components:bug', svgstr: bugSvg });
  117. export const checkIcon = new JLIcon({ name: 'ui-components:check', svgstr: checkSvg });
  118. export const circleEmptyIcon = new JLIcon({ name: 'ui-components:circle-empty', svgstr: circleEmptySvg });
  119. export const circleIcon = new JLIcon({ name: 'ui-components:circle', svgstr: circleSvg });
  120. export const closeIcon = new JLIcon({ name: 'ui-components:close', svgstr: closeSvg });
  121. export const copyIcon = new JLIcon({ name: 'ui-components:copy', svgstr: copySvg });
  122. export const cutIcon = new JLIcon({ name: 'ui-components:cut', svgstr: cutSvg });
  123. export const downloadIcon = new JLIcon({ name: 'ui-components:download', svgstr: downloadSvg });
  124. export const editIcon = new JLIcon({ name: 'ui-components:edit', svgstr: editSvg });
  125. export const ellipsesIcon = new JLIcon({ name: 'ui-components:ellipses', svgstr: ellipsesSvg });
  126. export const fileUploadIcon = new JLIcon({ name: 'ui-components:file-upload', svgstr: fileUploadSvg });
  127. export const filterListIcon = new JLIcon({ name: 'ui-components:filter-list', svgstr: filterListSvg });
  128. export const linkIcon = new JLIcon({ name: 'ui-components:link', svgstr: linkSvg });
  129. export const newFolderIcon = new JLIcon({ name: 'ui-components:new-folder', svgstr: newFolderSvg });
  130. export const pasteIcon = new JLIcon({ name: 'ui-components:paste', svgstr: pasteSvg });
  131. export const refreshIcon = new JLIcon({ name: 'ui-components:refresh', svgstr: refreshSvg });
  132. export const runIcon = new JLIcon({ name: 'ui-components:run', svgstr: runSvg });
  133. export const saveIcon = new JLIcon({ name: 'ui-components:save', svgstr: saveSvg });
  134. export const searchIcon = new JLIcon({ name: 'ui-components:search', svgstr: searchSvg });
  135. export const stopIcon = new JLIcon({ name: 'ui-components:stop', svgstr: stopSvg });
  136. export const undoIcon = new JLIcon({ name: 'ui-components:undo', svgstr: undoSvg });