merge conflicts
[arvados-workbench2.git] / src / components / icon / icon.tsx
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import * as React from 'react';
6 import AccessTime from '@material-ui/icons/AccessTime';
7 import ArrowDropDown from '@material-ui/icons/ArrowDropDown';
8 import BubbleChart from '@material-ui/icons/BubbleChart';
9 import Cached from '@material-ui/icons/Cached';
10 import Code from '@material-ui/icons/Code';
11 import ChevronLeft from '@material-ui/icons/ChevronLeft';
12 import ChevronRight from '@material-ui/icons/ChevronRight';
13 import Close from '@material-ui/icons/Close';
14 import ContentCopy from '@material-ui/icons/ContentCopy';
15 import CreateNewFolder from '@material-ui/icons/CreateNewFolder';
16 import Delete from '@material-ui/icons/Delete';
17 import Edit from '@material-ui/icons/Edit';
18 import Folder from '@material-ui/icons/Folder';
19 import GetApp from '@material-ui/icons/GetApp';
20 import Help from '@material-ui/icons/Help';
21 import Inbox from '@material-ui/icons/Inbox';
22 import Info from '@material-ui/icons/Info';
23 import Input from '@material-ui/icons/Input';
24 import Menu from '@material-ui/icons/Menu';
25 import MoreVert from '@material-ui/icons/MoreVert';
26 import Notifications from '@material-ui/icons/Notifications';
27 import People from '@material-ui/icons/People';
28 import Person from '@material-ui/icons/Person';
29 import PersonAdd from '@material-ui/icons/PersonAdd';
30 import PlayArrow from '@material-ui/icons/PlayArrow';
31 import RateReview from '@material-ui/icons/RateReview';
32 import Search from '@material-ui/icons/Search';
33 import Star from '@material-ui/icons/Star';
34 import StarBorder from '@material-ui/icons/StarBorder';
35
36 export type IconType = React.SFC<{ className?: string }>;
37
38 export const AddFavoriteIcon: IconType = (props) => <StarBorder {...props} />;
39 export const AdvancedIcon: IconType = (props) => <Folder {...props} />;
40 export const CustomizeTableIcon: IconType = (props) => <Menu {...props} />;
41 export const CopyIcon: IconType = (props) => <ContentCopy {...props} />;
42 export const CollectionIcon: IconType = (props) => <Folder {...props} />;
43 export const CloseIcon: IconType = (props) => <Close {...props} />;
44 export const DefaultIcon: IconType = (props) => <RateReview {...props} />;
45 export const DetailsIcon: IconType = (props) => <Info {...props} />;
46 export const DownloadIcon: IconType = (props) => <GetApp {...props} />;
47 export const FavoriteIcon: IconType = (props) => <Star {...props} />;
48 export const HelpIcon: IconType = (props) => <Help {...props} />;
49 export const LogIcon: IconType = (props) => <Folder {...props} />;
50 export const MoreOptionsIcon: IconType = (props) => <MoreVert {...props} />;
51 export const MoveToIcon: IconType = (props) => <Input {...props} />;
52 export const NewProjectIcon: IconType = (props) => <CreateNewFolder {...props} />;
53 export const NotificationIcon: IconType = (props) => <Notifications {...props} />;
54 export const PaginationDownIcon: IconType = (props) => <ArrowDropDown {...props} />;
55 export const PaginationLeftArrowIcon: IconType = (props) => <ChevronLeft {...props} />;
56 export const PaginationRightArrowIcon: IconType = (props) => <ChevronRight {...props} />;
57 export const ProcessIcon: IconType = (props) => <BubbleChart {...props} />;
58 export const ProjectIcon: IconType = (props) => <Folder {...props} />;
59 export const ProjectsIcon: IconType = (props) => <Inbox {...props} />;
60 export const ProvenanceGraphIcon: IconType = (props) => <Folder {...props} />;
61 export const RecentIcon: IconType = (props) => <AccessTime {...props} />;
62 export const RemoveIcon: IconType = (props) => <Delete {...props} />;
63 export const RemoveFavoriteIcon: IconType = (props) => <Star {...props} />;
64 export const RenameIcon: IconType = (props) => <Edit {...props} />;
65 export const ReRunProcessIcon: IconType = (props) => <Cached {...props} />;
66 export const SearchIcon: IconType = (props) => <Search {...props} />;
67 export const ShareIcon: IconType = (props) => <PersonAdd {...props} />;
68 export const ShareMeIcon: IconType = (props) => <People {...props} />;
69 export const SidePanelRightArrowIcon: IconType = (props) => <PlayArrow {...props} />;
70 export const TrashIcon: IconType = (props) => <Delete {...props} />;
71 export const UserPanelIcon: IconType = (props) => <Person {...props} />;
72 export const UsedByIcon: IconType = (props) => <Folder {...props} />;
73 export const WorkflowIcon: IconType = (props) => <Code {...props} />;