UNPKG

354 BPlain TextView Raw
1import { LabIcon } from '@jupyterlab/ui-components';
2
3import fonts from '!!raw-loader!../style/icons/fonts.svg';
4import license from '!!raw-loader!../style/icons/copyright.svg';
5
6export const ICONS = {
7 fonts: new LabIcon({
8 name: 'fonts:fonts',
9 svgstr: fonts
10 }),
11 license: new LabIcon({
12 name: 'fonts:license',
13 svgstr: license
14 })
15};