X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/c27efd822acfd3bd93fc3e2e3e24a24146811eb7..9ee35a64c605f116aec71f78c65b54730d6e1076:/src/components/icon/icon.tsx diff --git a/src/components/icon/icon.tsx b/src/components/icon/icon.tsx index b46195de..55c3c5a5 100644 --- a/src/components/icon/icon.tsx +++ b/src/components/icon/icon.tsx @@ -3,11 +3,12 @@ // SPDX-License-Identifier: AGPL-3.0 import * as React from 'react'; -import AccessTime from '@material-ui/icons/AccessTime'; +import { Badge, Tooltip } from '@material-ui/core'; import Add from '@material-ui/icons/Add'; import ArrowBack from '@material-ui/icons/ArrowBack'; import ArrowDropDown from '@material-ui/icons/ArrowDropDown'; import BubbleChart from '@material-ui/icons/BubbleChart'; +import Build from '@material-ui/icons/Build'; import Cached from '@material-ui/icons/Cached'; import ChevronLeft from '@material-ui/icons/ChevronLeft'; import CloudUpload from '@material-ui/icons/CloudUpload'; @@ -21,11 +22,13 @@ import CreateNewFolder from '@material-ui/icons/CreateNewFolder'; import Delete from '@material-ui/icons/Delete'; import DeviceHub from '@material-ui/icons/DeviceHub'; import Edit from '@material-ui/icons/Edit'; +import ErrorRoundedIcon from '@material-ui/icons/ErrorRounded'; import ExpandMoreIcon from '@material-ui/icons/ExpandMore'; import Folder from '@material-ui/icons/Folder'; import GetApp from '@material-ui/icons/GetApp'; import Help from '@material-ui/icons/Help'; import HelpOutline from '@material-ui/icons/HelpOutline'; +import History from '@material-ui/icons/History'; import Inbox from '@material-ui/icons/Inbox'; import Info from '@material-ui/icons/Info'; import Input from '@material-ui/icons/Input'; @@ -38,10 +41,12 @@ import MoreVert from '@material-ui/icons/MoreVert'; import Mail from '@material-ui/icons/Mail'; import MoveToInbox from '@material-ui/icons/MoveToInbox'; import Notifications from '@material-ui/icons/Notifications'; +import OpenInNew from '@material-ui/icons/OpenInNew'; import People from '@material-ui/icons/People'; import Person from '@material-ui/icons/Person'; import PersonAdd from '@material-ui/icons/PersonAdd'; import PlayArrow from '@material-ui/icons/PlayArrow'; +import Public from '@material-ui/icons/Public'; import RateReview from '@material-ui/icons/RateReview'; import RestoreFromTrash from '@material-ui/icons/History'; import Search from '@material-ui/icons/Search'; @@ -50,11 +55,38 @@ import SettingsEthernet from '@material-ui/icons/SettingsEthernet'; import Star from '@material-ui/icons/Star'; import StarBorder from '@material-ui/icons/StarBorder'; import Warning from '@material-ui/icons/Warning'; +import VpnKey from '@material-ui/icons/VpnKey'; +import LinkOutlined from '@material-ui/icons/LinkOutlined'; + +// Import FontAwesome icons +import { library } from '@fortawesome/fontawesome-svg-core'; +import { faPencilAlt, faSlash } from '@fortawesome/free-solid-svg-icons'; +library.add( + faPencilAlt, + faSlash, +); + +export const ReadOnlyIcon = (props:any) => + +
+ + +
+
; + +export const CollectionOldVersionIcon = (props: any) => + + }> + + + ; export type IconType = React.SFC<{ className?: string, style?: object }>; export const AddIcon: IconType = (props) => ; export const AddFavoriteIcon: IconType = (props) => ; +export const AdminMenuIcon: IconType = (props) => ; export const AdvancedIcon: IconType = (props) => ; export const AttributesIcon: IconType = (props) => ; export const BackIcon: IconType = (props) => ; @@ -66,20 +98,25 @@ export const CloseIcon: IconType = (props) => ; export const CloudUploadIcon: IconType = (props) => ; export const DefaultIcon: IconType = (props) => ; export const DetailsIcon: IconType = (props) => ; +export const DirectoryIcon: IconType = (props) => ; export const DownloadIcon: IconType = (props) => ; export const EditSavedQueryIcon: IconType = (props) => ; export const ExpandIcon: IconType = (props) => ; +export const ErrorIcon: IconType = (props) => ; export const FavoriteIcon: IconType = (props) => ; +export const FileIcon: IconType = (props) => ; export const HelpIcon: IconType = (props) => ; export const HelpOutlineIcon: IconType = (props) => ; export const ImportContactsIcon: IconType = (props) => ; export const InputIcon: IconType = (props) => ; +export const KeyIcon: IconType = (props) => ; export const LogIcon: IconType = (props) => ; export const MailIcon: IconType = (props) => ; export const MoreOptionsIcon: IconType = (props) => ; export const MoveToIcon: IconType = (props) => ; export const NewProjectIcon: IconType = (props) => ; export const NotificationIcon: IconType = (props) => ; +export const OpenIcon: IconType = (props) => ; export const OutputIcon: IconType = (props) => ; export const PaginationDownIcon: IconType = (props) => ; export const PaginationLeftArrowIcon: IconType = (props) => ; @@ -88,9 +125,9 @@ export const ProcessIcon: IconType = (props) => ; export const ProjectIcon: IconType = (props) => ; export const ProjectsIcon: IconType = (props) => ; export const ProvenanceGraphIcon: IconType = (props) => ; -export const RecentIcon: IconType = (props) => ; export const RemoveIcon: IconType = (props) => ; export const RemoveFavoriteIcon: IconType = (props) => ; +export const PublicFavoriteIcon: IconType = (props) => ; export const RenameIcon: IconType = (props) => ; export const RestoreFromTrashIcon: IconType = (props) => ; export const ReRunProcessIcon: IconType = (props) => ; @@ -103,3 +140,4 @@ export const UserPanelIcon: IconType = (props) => ; export const UsedByIcon: IconType = (props) => ; export const WorkflowIcon: IconType = (props) => ; export const WarningIcon: IconType = (props) => ; +export const Link: IconType = (props) => ;