X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/38d27e9783f7f760cee84cc225e86144069848c4..a23cfd6defb8dab9ac9afe13034f7b667f07acca:/src/components/icon/icon.tsx?ds=sidebyside diff --git a/src/components/icon/icon.tsx b/src/components/icon/icon.tsx index 26ce4feae7..960cc38b1c 100644 --- a/src/components/icon/icon.tsx +++ b/src/components/icon/icon.tsx @@ -59,17 +59,51 @@ 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 Visibility from '@material-ui/icons/Visibility'; +import VisibilityOff from '@material-ui/icons/VisibilityOff'; import VpnKey from '@material-ui/icons/VpnKey'; import LinkOutlined from '@material-ui/icons/LinkOutlined'; +import RemoveRedEye from '@material-ui/icons/RemoveRedEye'; +import Computer from '@material-ui/icons/Computer'; +import WrapText from '@material-ui/icons/WrapText'; +import TextIncrease from '@material-ui/icons/ZoomIn'; +import TextDecrease from '@material-ui/icons/ZoomOut'; +import CropFreeSharp from '@material-ui/icons/CropFreeSharp'; +import ExitToApp from '@material-ui/icons/ExitToApp'; +import CheckCircleOutline from '@material-ui/icons/CheckCircleOutline'; +import RemoveCircleOutline from '@material-ui/icons/RemoveCircleOutline'; +import NotInterested from '@material-ui/icons/NotInterested'; // Import FontAwesome icons import { library } from '@fortawesome/fontawesome-svg-core'; -import { faPencilAlt, faSlash } from '@fortawesome/free-solid-svg-icons'; +import { faPencilAlt, faSlash, faUsers, faEllipsisH } from '@fortawesome/free-solid-svg-icons'; +import { FormatAlignLeft } from '@material-ui/icons'; library.add( faPencilAlt, faSlash, + faUsers, + faEllipsisH, ); +export const FreezeIcon = (props: any) => + + + + +export const UnfreezeIcon = (props: any) => +
+
+ + +
+
; + +export const PendingIcon = (props: any) => + + + + export const ReadOnlyIcon = (props: any) =>
@@ -79,6 +113,11 @@ export const ReadOnlyIcon = (props: any) =>
; +export const GroupsIcon = (props: any) => + + + ; + export const CollectionOldVersionIcon = (props: any) => }> @@ -112,10 +151,12 @@ export const FileIcon: IconType = (props) => ; export const HelpIcon: IconType = (props) => ; export const HelpOutlineIcon: IconType = (props) => ; export const ImportContactsIcon: IconType = (props) => ; +export const InfoIcon: IconType = (props) => ; export const InputIcon: IconType = (props) => ; export const KeyIcon: IconType = (props) => ; export const LogIcon: IconType = (props) => ; export const MailIcon: IconType = (props) => ; +export const MaximizeIcon: IconType = (props) => ; export const MoreOptionsIcon: IconType = (props) => ; export const MoveToIcon: IconType = (props) => ; export const NewProjectIcon: IconType = (props) => ; @@ -144,7 +185,22 @@ export const SidePanelRightArrowIcon: IconType = (props) => ; export const UserPanelIcon: IconType = (props) => ; export const UsedByIcon: IconType = (props) => ; +export const VisibleIcon: IconType = (props) => ; +export const InvisibleIcon: IconType = (props) => ; export const WorkflowIcon: IconType = (props) => ; export const WarningIcon: IconType = (props) => ; export const Link: IconType = (props) => ; export const FolderSharedIcon: IconType = (props) => ; +export const CanReadIcon: IconType = (props) => ; +export const CanWriteIcon: IconType = (props) => ; +export const CanManageIcon: IconType = (props) => ; +export const AddUserIcon: IconType = (props) => ; +export const WordWrapOnIcon: IconType = (props) => ; +export const WordWrapOffIcon: IconType = (props) => ; +export const TextIncreaseIcon: IconType = (props) => ; +export const TextDecreaseIcon: IconType = (props) => ; +export const DeactivateUserIcon: IconType = (props) => ; +export const LoginAsIcon: IconType = (props) => ; +export const ActiveIcon: IconType = (props) => ; +export const SetupIcon: IconType = (props) => ; +export const InactiveIcon: IconType = (props) => ;