|
@@ -0,0 +1,62 @@
|
|
|
+/*-----------------------------------------------------------------------------
|
|
|
+| Copyright (c) Jupyter Development Team.
|
|
|
+| Distributed under the terms of the Modified BSD License.
|
|
|
+|----------------------------------------------------------------------------*/
|
|
|
+
|
|
|
+/* This file was auto-generated by ensureUiComponents() in @jupyterlab/buildutils */
|
|
|
+
|
|
|
+import { Icon } from './icon';
|
|
|
+
|
|
|
+// icon svg import statements
|
|
|
+import fileSvg from '../../style/icons/filetype/file.svg';
|
|
|
+import folderSvg from '../../style/icons/filetype/folder.svg';
|
|
|
+import html5Svg from '../../style/icons/filetype/html5.svg';
|
|
|
+import imageSvg from '../../style/icons/filetype/image.svg';
|
|
|
+import jsonSvg from '../../style/icons/filetype/json.svg';
|
|
|
+import markdownSvg from '../../style/icons/filetype/markdown.svg';
|
|
|
+import notebookSvg from '../../style/icons/filetype/notebook.svg';
|
|
|
+import pythonSvg from '../../style/icons/filetype/python.svg';
|
|
|
+import rKernelSvg from '../../style/icons/filetype/r-kernel.svg';
|
|
|
+import reactSvg from '../../style/icons/filetype/react.svg';
|
|
|
+import spreadsheetSvg from '../../style/icons/filetype/spreadsheet.svg';
|
|
|
+import yamlSvg from '../../style/icons/filetype/yaml.svg';
|
|
|
+import jupyterFaviconSvg from '../../style/icons/jupyter-favicon.svg';
|
|
|
+import buildSvg from '../../style/icons/sidebar/build.svg';
|
|
|
+import extensionSvg from '../../style/icons/sidebar/extension.svg';
|
|
|
+import paletteSvg from '../../style/icons/sidebar/palette.svg';
|
|
|
+import runningSvg from '../../style/icons/sidebar/running.svg';
|
|
|
+import tabSvg from '../../style/icons/sidebar/tab.svg';
|
|
|
+import kernelSvg from '../../style/icons/statusbar/kernel.svg';
|
|
|
+import lineFormSvg from '../../style/icons/statusbar/line-form.svg';
|
|
|
+import notTrustedSvg from '../../style/icons/statusbar/not-trusted.svg';
|
|
|
+import terminalSvg from '../../style/icons/statusbar/terminal.svg';
|
|
|
+import trustedSvg from '../../style/icons/statusbar/trusted.svg';
|
|
|
+
|
|
|
+// defaultIcons definition
|
|
|
+export namespace IconImports {
|
|
|
+ export const defaultIcons: ReadonlyArray<Icon.IModel> = [
|
|
|
+ { name: 'file', svg: fileSvg },
|
|
|
+ { name: 'folder', svg: folderSvg },
|
|
|
+ { name: 'html5', svg: html5Svg },
|
|
|
+ { name: 'image', svg: imageSvg },
|
|
|
+ { name: 'json', svg: jsonSvg },
|
|
|
+ { name: 'markdown', svg: markdownSvg },
|
|
|
+ { name: 'notebook', svg: notebookSvg },
|
|
|
+ { name: 'python', svg: pythonSvg },
|
|
|
+ { name: 'r-kernel', svg: rKernelSvg },
|
|
|
+ { name: 'react', svg: reactSvg },
|
|
|
+ { name: 'spreadsheet', svg: spreadsheetSvg },
|
|
|
+ { name: 'yaml', svg: yamlSvg },
|
|
|
+ { name: 'jupyter-favicon', svg: jupyterFaviconSvg },
|
|
|
+ { name: 'build', svg: buildSvg },
|
|
|
+ { name: 'extension', svg: extensionSvg },
|
|
|
+ { name: 'palette', svg: paletteSvg },
|
|
|
+ { name: 'running', svg: runningSvg },
|
|
|
+ { name: 'tab', svg: tabSvg },
|
|
|
+ { name: 'kernel', svg: kernelSvg },
|
|
|
+ { name: 'line-form', svg: lineFormSvg },
|
|
|
+ { name: 'not-trusted', svg: notTrustedSvg },
|
|
|
+ { name: 'terminal', svg: terminalSvg },
|
|
|
+ { name: 'trusted', svg: trustedSvg }
|
|
|
+ ];
|
|
|
+}
|