diff --git a/platform/ui/src/assets/icons/arrow-down.svg b/platform/ui/src/assets/icons/arrow-down.svg new file mode 100644 index 000000000..1afd344cf --- /dev/null +++ b/platform/ui/src/assets/icons/arrow-down.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/platform/ui/src/components/Icon/getIcon.jsx b/platform/ui/src/components/Icon/getIcon.jsx index 248e94550..6bc7e6489 100644 --- a/platform/ui/src/components/Icon/getIcon.jsx +++ b/platform/ui/src/components/Icon/getIcon.jsx @@ -1,5 +1,6 @@ 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 cancel from './../../assets/icons/cancel.svg'; @@ -17,6 +18,7 @@ import sortingActiveDown from './../../assets/icons/sorting-active-down.svg'; import sortingActiveUp from './../../assets/icons/sorting-active-up.svg'; const ICONS = { + 'arrow-down': arrowDown, 'series-active': seriesActive, 'series-inactive': seriesInactive, cancel: cancel, diff --git a/platform/ui/src/views/StudyList/components/StudyListPagination.js b/platform/ui/src/views/StudyList/components/StudyListPagination.js index 9a8f599cd..6cc4b8980 100644 --- a/platform/ui/src/views/StudyList/components/StudyListPagination.js +++ b/platform/ui/src/views/StudyList/components/StudyListPagination.js @@ -4,6 +4,7 @@ import { ButtonGroup, Button, IconButton, + Icon, } from '../../../components/'; const StudyListPagination = props => { @@ -19,14 +20,24 @@ const StudyListPagination = props => {
- +
+ +
+ +
+
Results per page @@ -39,7 +50,8 @@ const StudyListPagination = props => { navigateToPage(1)} > @@ -47,13 +59,15 @@ const StudyListPagination = props => {