X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/f9dde5c781766b8be71d43d0f031c201a0edcfbb..66b5f8e710c93ebea30460ad40e329b1c8f1a7e6:/src/components/icon/icon.tsx diff --git a/src/components/icon/icon.tsx b/src/components/icon/icon.tsx index 2bd16970..2573d764 100644 --- a/src/components/icon/icon.tsx +++ b/src/components/icon/icon.tsx @@ -21,6 +21,7 @@ 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'; @@ -43,6 +44,7 @@ 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'; @@ -52,6 +54,24 @@ 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 type IconType = React.SFC<{ className?: string, style?: object }>; @@ -72,6 +92,7 @@ export const DetailsIcon: 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 HelpIcon: IconType = (props) => ; export const HelpOutlineIcon: IconType = (props) => ; @@ -95,6 +116,7 @@ export const ProjectsIcon: IconType = (props) => ; export const ProvenanceGraphIcon: 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) => ; @@ -107,3 +129,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) => ;