|
1 | 1 | import React, { ReactElement, ReactNode } from "react"; |
2 | 2 | import { Link, useLocation } from "react-router-dom"; |
3 | 3 | import { |
4 | | - Layout as RMDLayout, |
5 | | - Configuration, |
6 | | - ConfigurableIcons, |
7 | | - useLayoutNavigation, |
8 | 4 | ArrowDropDownSVGIcon, |
| 5 | + ArrowUpwardSVGIcon, |
9 | 6 | CheckBoxSVGIcon, |
| 7 | + CheckSVGIcon, |
| 8 | + ConfigurableIcons, |
| 9 | + Configuration, |
| 10 | + ErrorOutlineSVGIcon, |
10 | 11 | FileDownloadSVGIcon, |
11 | 12 | KeyboardArrowDownSVGIcon, |
12 | 13 | KeyboardArrowLeftSVGIcon, |
13 | 14 | KeyboardArrowRightSVGIcon, |
| 15 | + Layout as RMDLayout, |
14 | 16 | MenuSVGIcon, |
15 | 17 | NotificationsSVGIcon, |
16 | 18 | RadioButtonCheckedSVGIcon, |
17 | 19 | RemoveRedEyeSVGIcon, |
18 | | - ArrowUpwardSVGIcon, |
19 | | - CheckSVGIcon, |
| 20 | + useLayoutNavigation, |
20 | 21 | } from "react-md"; |
21 | 22 |
|
22 | 23 | import navItems from "./navItems"; |
23 | 24 |
|
24 | 25 | const icons: ConfigurableIcons = { |
25 | 26 | back: <KeyboardArrowLeftSVGIcon />, |
26 | 27 | checkbox: <CheckBoxSVGIcon />, |
27 | | - dropdown: <ArrowDropDownSVGIcon />, |
28 | 28 | download: <FileDownloadSVGIcon />, |
| 29 | + dropdown: <ArrowDropDownSVGIcon />, |
| 30 | + error: <ErrorOutlineSVGIcon />, |
29 | 31 | expander: <KeyboardArrowDownSVGIcon />, |
30 | 32 | forward: <KeyboardArrowRightSVGIcon />, |
31 | 33 | menu: <MenuSVGIcon />, |
32 | 34 | notification: <NotificationsSVGIcon />, |
33 | | - radio: <RadioButtonCheckedSVGIcon />, |
34 | 35 | password: <RemoveRedEyeSVGIcon />, |
| 36 | + radio: <RadioButtonCheckedSVGIcon />, |
35 | 37 | selected: <CheckSVGIcon />, |
36 | 38 | sort: <ArrowUpwardSVGIcon />, |
37 | 39 | }; |
|
0 commit comments