2016-12-12 18:30:05 +01:00
|
|
|
// Copyright 2015, 2016 Parity Technologies (UK) Ltd.
|
|
|
|
// This file is part of Parity.
|
|
|
|
|
|
|
|
// Parity is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// Parity is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2016-12-12 23:53:29 +01:00
|
|
|
import AddIcon from 'material-ui/svg-icons/content/add';
|
2017-01-24 16:18:23 +01:00
|
|
|
import AttachFileIcon from 'material-ui/svg-icons/editor/attach-file';
|
2016-12-12 23:53:29 +01:00
|
|
|
import CancelIcon from 'material-ui/svg-icons/content/clear';
|
2016-12-27 12:40:16 +01:00
|
|
|
import CheckIcon from 'material-ui/svg-icons/navigation/check';
|
2016-12-27 10:59:37 +01:00
|
|
|
import CloseIcon from 'material-ui/svg-icons/navigation/close';
|
2017-01-04 15:15:11 +01:00
|
|
|
import CompareIcon from 'material-ui/svg-icons/action/compare-arrows';
|
|
|
|
import ComputerIcon from 'material-ui/svg-icons/hardware/desktop-mac';
|
2016-12-22 18:30:59 +01:00
|
|
|
import ContractIcon from 'material-ui/svg-icons/action/code';
|
2017-01-04 15:15:11 +01:00
|
|
|
import DashboardIcon from 'material-ui/svg-icons/action/dashboard';
|
2017-01-05 12:06:35 +01:00
|
|
|
import DeleteIcon from 'material-ui/svg-icons/action/delete';
|
2016-12-12 23:53:29 +01:00
|
|
|
import DoneIcon from 'material-ui/svg-icons/action/done-all';
|
2017-01-05 12:06:35 +01:00
|
|
|
import EditIcon from 'material-ui/svg-icons/content/create';
|
2017-01-21 14:44:14 +01:00
|
|
|
import FingerprintIcon from 'material-ui/svg-icons/action/fingerprint';
|
2017-01-05 21:15:01 +01:00
|
|
|
import LinkIcon from 'material-ui/svg-icons/content/link';
|
2017-01-05 12:06:35 +01:00
|
|
|
import LockedIcon from 'material-ui/svg-icons/action/lock';
|
2017-01-21 14:44:14 +01:00
|
|
|
import MoveIcon from 'material-ui/svg-icons/action/open-with';
|
2016-12-12 23:53:29 +01:00
|
|
|
import NextIcon from 'material-ui/svg-icons/navigation/arrow-forward';
|
2016-12-27 16:23:41 +01:00
|
|
|
import PrevIcon from 'material-ui/svg-icons/navigation/arrow-back';
|
2017-01-24 16:18:23 +01:00
|
|
|
import PrintIcon from 'material-ui/svg-icons/action/print';
|
|
|
|
import RefreshIcon from 'material-ui/svg-icons/action/autorenew';
|
2016-12-27 11:02:53 +01:00
|
|
|
import SaveIcon from 'material-ui/svg-icons/content/save';
|
2016-12-28 18:09:45 +01:00
|
|
|
import SendIcon from 'material-ui/svg-icons/content/send';
|
2016-12-12 23:53:29 +01:00
|
|
|
import SnoozeIcon from 'material-ui/svg-icons/av/snooze';
|
2017-01-05 12:06:35 +01:00
|
|
|
import VerifyIcon from 'material-ui/svg-icons/action/verified-user';
|
2016-12-27 16:23:41 +01:00
|
|
|
import VisibleIcon from 'material-ui/svg-icons/image/remove-red-eye';
|
2017-01-04 15:15:11 +01:00
|
|
|
import VpnIcon from 'material-ui/svg-icons/notification/vpn-lock';
|
2016-12-12 23:53:29 +01:00
|
|
|
|
|
|
|
export {
|
|
|
|
AddIcon,
|
2017-01-24 16:18:23 +01:00
|
|
|
AttachFileIcon,
|
2016-12-12 23:53:29 +01:00
|
|
|
CancelIcon,
|
2016-12-27 12:40:16 +01:00
|
|
|
CheckIcon,
|
2016-12-27 10:59:37 +01:00
|
|
|
CloseIcon,
|
2017-01-04 15:15:11 +01:00
|
|
|
CompareIcon,
|
|
|
|
ComputerIcon,
|
2016-12-22 18:30:59 +01:00
|
|
|
ContractIcon,
|
2017-01-04 15:15:11 +01:00
|
|
|
DashboardIcon,
|
2017-01-05 12:06:35 +01:00
|
|
|
DeleteIcon,
|
2016-12-12 23:53:29 +01:00
|
|
|
DoneIcon,
|
2017-01-05 12:06:35 +01:00
|
|
|
EditIcon,
|
2017-01-21 14:44:14 +01:00
|
|
|
FingerprintIcon,
|
2017-01-05 21:15:01 +01:00
|
|
|
LinkIcon,
|
2016-12-27 16:23:41 +01:00
|
|
|
LockedIcon,
|
2017-01-21 14:44:14 +01:00
|
|
|
MoveIcon,
|
2016-12-12 23:53:29 +01:00
|
|
|
NextIcon,
|
2016-12-27 16:23:41 +01:00
|
|
|
PrevIcon,
|
2017-01-24 16:18:23 +01:00
|
|
|
PrintIcon,
|
|
|
|
RefreshIcon,
|
2016-12-27 11:02:53 +01:00
|
|
|
SaveIcon,
|
2016-12-28 18:09:45 +01:00
|
|
|
SendIcon,
|
2016-12-27 16:23:41 +01:00
|
|
|
SnoozeIcon,
|
2017-01-05 12:06:35 +01:00
|
|
|
VerifyIcon,
|
2017-01-04 15:15:11 +01:00
|
|
|
VisibleIcon,
|
|
|
|
VpnIcon
|
2016-12-12 23:53:29 +01:00
|
|
|
};
|