Addin new icons
This commit is contained in:
parent
59dd5820dd
commit
5f695f2e66
6
platform/ui/src/assets/icons/icon-nav-studies.svg
Normal file
6
platform/ui/src/assets/icons/icon-nav-studies.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" viewBox="0 0 25 25">
|
||||
<g fill="none" fill-rule="evenodd" stroke="#348CFD" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" transform="translate(1 1)">
|
||||
<path d="M6 17H1c-.552 0-1-.448-1-1V1c0-.552.448-1 1-1h15c.552 0 1 .448 1 1v5"/>
|
||||
<rect width="17" height="17" x="6" y="6" rx="1"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 397 B |
10
platform/ui/src/assets/icons/list-bullets.svg
Normal file
10
platform/ui/src/assets/icons/list-bullets.svg
Normal file
@ -0,0 +1,10 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="26" height="23" viewBox="0 0 26 23">
|
||||
<g fill="none" fill-rule="evenodd" stroke="#348CFD" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" transform="translate(1 1)">
|
||||
<circle cx="2.5" cy="2.498" r="2"/>
|
||||
<path d="M8.5 2.498L23.5 2.498"/>
|
||||
<circle cx="2.5" cy="10.498" r="2"/>
|
||||
<path d="M8.5 10.498L23.5 10.498"/>
|
||||
<circle cx="2.5" cy="18.498" r="2"/>
|
||||
<path d="M8.5 18.498L23.5 18.498"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 514 B |
5
platform/ui/src/assets/icons/panel-left.svg
Normal file
5
platform/ui/src/assets/icons/panel-left.svg
Normal file
@ -0,0 +1,5 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="12" viewBox="0 0 20 12">
|
||||
<g fill="none" fill-rule="evenodd" stroke="#348CFD" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5">
|
||||
<path d="M20 5.906L6.818 5.906M12.273.452L6.818 5.906 12.273 11.361M.909 11.361L.909.452"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 323 B |
5
platform/ui/src/assets/icons/panel-right.svg
Normal file
5
platform/ui/src/assets/icons/panel-right.svg
Normal file
@ -0,0 +1,5 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="12" viewBox="0 0 20 12">
|
||||
<g fill="none" fill-rule="evenodd" stroke="#348CFD" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5">
|
||||
<path d="M20 5.906L6.818 5.906M12.273.452L6.818 5.906 12.273 11.361M.909 11.361L.909.452" transform="matrix(-1 0 0 1 20 0)"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 357 B |
@ -1,19 +1,22 @@
|
||||
import React from 'react';
|
||||
// Icons
|
||||
|
||||
import arrowDown from './../../assets/icons/arrow-down.svg';
|
||||
import seriesActive from './../../assets/icons/series-active.svg';
|
||||
import seriesInactive from './../../assets/icons/series-inactive.svg';
|
||||
import calendar from './../../assets/icons/calendar.svg';
|
||||
import cancel from './../../assets/icons/cancel.svg';
|
||||
import chevronDown from './../../assets/icons/chevron-down.svg';
|
||||
import chevronLeft from './../../assets/icons/chevron-left.svg';
|
||||
import chevronRight from './../../assets/icons/chevron-right.svg';
|
||||
import iconNavStudies from './../../assets/icons/icon-nav-studies.svg';
|
||||
import infoLink from './../../assets/icons/info-link.svg';
|
||||
import launchArrow from './../../assets/icons/launch-arrow.svg';
|
||||
import launchInfo from './../../assets/icons/launch-info.svg';
|
||||
import listBullets from './../../assets/icons/list-bullets.svg';
|
||||
import logoOhifSmall from './../../assets/icons/logo-ohif-small.svg';
|
||||
import magnifier from './../../assets/icons/magnifier.svg';
|
||||
import notificationwarningDiamond from './../../assets/icons/notificationwarning-diamond.svg';
|
||||
import panelLeft from './../../assets/icons/panel-left.svg';
|
||||
import panelRight from './../../assets/icons/panel-right.svg';
|
||||
import settings from './../../assets/icons/settings.svg';
|
||||
import sorting from './../../assets/icons/sorting.svg';
|
||||
import sortingActiveDown from './../../assets/icons/sorting-active-down.svg';
|
||||
@ -29,19 +32,21 @@ import toolWindow from './../../assets/icons/tool-window-level.svg';
|
||||
|
||||
const ICONS = {
|
||||
'arrow-down': arrowDown,
|
||||
'series-active': seriesActive,
|
||||
'series-inactive': seriesInactive,
|
||||
calendar: calendar,
|
||||
cancel: cancel,
|
||||
'chevron-down': chevronDown,
|
||||
'chevron-left': chevronLeft,
|
||||
'chevron-right': chevronRight,
|
||||
'icon-nav-studies': iconNavStudies,
|
||||
'info-link': infoLink,
|
||||
'launch-arrow': launchArrow,
|
||||
'launch-info': launchInfo,
|
||||
'list-bullets': listBullets,
|
||||
'logo-ohif-small': logoOhifSmall,
|
||||
magnifier: magnifier,
|
||||
'notificationwarning-diamond': notificationwarningDiamond,
|
||||
'panel-left': panelLeft,
|
||||
'panel-right': panelRight,
|
||||
settings: settings,
|
||||
'sorting-active-down': sortingActiveDown,
|
||||
'sorting-active-up': sortingActiveUp,
|
||||
|
||||
Loading…
Reference in New Issue
Block a user