All files / src/components icons.ts

0% Statements 0/9
100% Branches 0/0
100% Functions 0/0
0% Lines 0/9

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26                                                   
// This file is based on iconimports.ts in @jupyterlab/ui-components, but is manually generated.
 
import { LabIcon } from '@jupyterlab/ui-components';
 
import calendarAddOnSvgstr from '../../style/icons/calendar-add-on.svg';
import calendarMonthSvgStr from '../../style/icons/calendar-month.svg';
import eventNoteSvgstr from '../../style/icons/event-note.svg';
import replaySvgstr from '../../style/icons/replay.svg';
 
export const calendarAddOnIcon = new LabIcon({
  name: 'jupyterlab-scheduler:calendar-add-on',
  svgstr: calendarAddOnSvgstr
});
export const calendarMonthIcon = new LabIcon({
  name: 'jupyterlab-scheduler:calendar-month',
  svgstr: calendarMonthSvgStr
});
export const eventNoteIcon = new LabIcon({
  name: 'jupyterlab-scheduler:event-note',
  svgstr: eventNoteSvgstr
});
export const replayIcon = new LabIcon({
  name: 'jupyterlab-scheduler:replay',
  svgstr: replaySvgstr
});