|
@@ -24,6 +24,7 @@ import circleEmptySvgstr from '../../style/icons/toolbar/circle-empty.svg';
|
|
|
import circleSvgstr from '../../style/icons/toolbar/circle.svg';
|
|
|
import clearSvgstr from '../../style/icons/toolbar/clear.svg';
|
|
|
import closeSvgstr from '../../style/icons/toolbar/close.svg';
|
|
|
+import codeSvgstr from '../../style/icons/toolbar/code.svg';
|
|
|
import consoleSvgstr from '../../style/icons/filetype/console.svg';
|
|
|
import copySvgstr from '../../style/icons/toolbar/copy.svg';
|
|
|
import cutSvgstr from '../../style/icons/toolbar/cut.svg';
|
|
@@ -54,6 +55,7 @@ import markdownSvgstr from '../../style/icons/filetype/markdown.svg';
|
|
|
import newFolderSvgstr from '../../style/icons/toolbar/new-folder.svg';
|
|
|
import notTrustedSvgstr from '../../style/icons/statusbar/not-trusted.svg';
|
|
|
import notebookSvgstr from '../../style/icons/filetype/notebook.svg';
|
|
|
+import numberingSvgstr from '../../style/icons/toolbar/numbering.svg';
|
|
|
import paletteSvgstr from '../../style/icons/sidebar/palette.svg';
|
|
|
import pasteSvgstr from '../../style/icons/toolbar/paste.svg';
|
|
|
import pythonSvgstr from '../../style/icons/filetype/python.svg';
|
|
@@ -70,8 +72,10 @@ import settingsSvgstr from '../../style/icons/filetype/settings.svg';
|
|
|
import spreadsheetSvgstr from '../../style/icons/filetype/spreadsheet.svg';
|
|
|
import stopSvgstr from '../../style/icons/toolbar/stop.svg';
|
|
|
import tabSvgstr from '../../style/icons/sidebar/tab.svg';
|
|
|
+import tagSvgstr from '../../style/icons/toolbar/tag.svg';
|
|
|
import terminalSvgstr from '../../style/icons/statusbar/terminal.svg';
|
|
|
import textEditorSvgstr from '../../style/icons/filetype/text-editor.svg';
|
|
|
+import tocSvgstr from '../../style/icons/sidebar/toc.svg';
|
|
|
import trustedSvgstr from '../../style/icons/statusbar/trusted.svg';
|
|
|
import undoSvgstr from '../../style/icons/toolbar/undo.svg';
|
|
|
import vegaSvgstr from '../../style/icons/filetype/vega.svg';
|
|
@@ -94,6 +98,7 @@ export const circleEmptyIcon = new LabIcon({ name: 'ui-components:circle-empty',
|
|
|
export const circleIcon = new LabIcon({ name: 'ui-components:circle', svgstr: circleSvgstr });
|
|
|
export const clearIcon = new LabIcon({ name: 'ui-components:clear', svgstr: clearSvgstr });
|
|
|
export const closeIcon = new LabIcon({ name: 'ui-components:close', svgstr: closeSvgstr });
|
|
|
+export const codeIcon = new LabIcon({ name: 'ui-components:code', svgstr: codeSvgstr });
|
|
|
export const consoleIcon = new LabIcon({ name: 'ui-components:console', svgstr: consoleSvgstr });
|
|
|
export const copyIcon = new LabIcon({ name: 'ui-components:copy', svgstr: copySvgstr });
|
|
|
export const cutIcon = new LabIcon({ name: 'ui-components:cut', svgstr: cutSvgstr });
|
|
@@ -124,6 +129,7 @@ export const markdownIcon = new LabIcon({ name: 'ui-components:markdown', svgstr
|
|
|
export const newFolderIcon = new LabIcon({ name: 'ui-components:new-folder', svgstr: newFolderSvgstr });
|
|
|
export const notTrustedIcon = new LabIcon({ name: 'ui-components:not-trusted', svgstr: notTrustedSvgstr });
|
|
|
export const notebookIcon = new LabIcon({ name: 'ui-components:notebook', svgstr: notebookSvgstr });
|
|
|
+export const numberingIcon = new LabIcon({ name: 'ui-components:numbering', svgstr: numberingSvgstr });
|
|
|
export const paletteIcon = new LabIcon({ name: 'ui-components:palette', svgstr: paletteSvgstr });
|
|
|
export const pasteIcon = new LabIcon({ name: 'ui-components:paste', svgstr: pasteSvgstr });
|
|
|
export const pythonIcon = new LabIcon({ name: 'ui-components:python', svgstr: pythonSvgstr });
|
|
@@ -140,8 +146,10 @@ export const settingsIcon = new LabIcon({ name: 'ui-components:settings', svgstr
|
|
|
export const spreadsheetIcon = new LabIcon({ name: 'ui-components:spreadsheet', svgstr: spreadsheetSvgstr });
|
|
|
export const stopIcon = new LabIcon({ name: 'ui-components:stop', svgstr: stopSvgstr });
|
|
|
export const tabIcon = new LabIcon({ name: 'ui-components:tab', svgstr: tabSvgstr });
|
|
|
+export const tagIcon = new LabIcon({ name: 'ui-components:tag', svgstr: tagSvgstr });
|
|
|
export const terminalIcon = new LabIcon({ name: 'ui-components:terminal', svgstr: terminalSvgstr });
|
|
|
export const textEditorIcon = new LabIcon({ name: 'ui-components:text-editor', svgstr: textEditorSvgstr });
|
|
|
+export const tocIcon = new LabIcon({ name: 'ui-components:toc', svgstr: tocSvgstr });
|
|
|
export const trustedIcon = new LabIcon({ name: 'ui-components:trusted', svgstr: trustedSvgstr });
|
|
|
export const undoIcon = new LabIcon({ name: 'ui-components:undo', svgstr: undoSvgstr });
|
|
|
export const vegaIcon = new LabIcon({ name: 'ui-components:vega', svgstr: vegaSvgstr });
|