X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/cb73538f0851cea402a0544861966c2515a24b5b..3456de80d25dfb480133bd8afd9f51cdb1d942ee:/services/workbench2/src/components/icon/icon.tsx diff --git a/services/workbench2/src/components/icon/icon.tsx b/services/workbench2/src/components/icon/icon.tsx index 998cd8059a..a54bc999e9 100644 --- a/services/workbench2/src/components/icon/icon.tsx +++ b/services/workbench2/src/components/icon/icon.tsx @@ -84,13 +84,13 @@ import { faPencilAlt, faSlash, faUsers, faEllipsisH } from "@fortawesome/free-so import { FormatAlignLeft } from "@material-ui/icons"; library.add(faPencilAlt, faSlash, faUsers, faEllipsisH); -export const FreezeIcon = (props: any) => ( +export const FreezeIcon: IconType = (props: any) => ( ); -export const UnfreezeIcon = (props: any) => ( +export const UnfreezeIcon: IconType = (props: any) => ( @@ -171,6 +171,13 @@ export const TerminalIcon: IconType = (props: any) => ( ) +//https://pictogrammers.com/library/mdi/icon/chevron-double-right/ +export const DoubleRightArrows: IconType = (props: any) => ( + + + +) + export type IconType = React.SFC<{ className?: string; style?: object }>; export const AddIcon: IconType = props => ; @@ -209,7 +216,7 @@ export const KeyIcon: IconType = props => ; export const LogIcon: IconType = props => ; export const MailIcon: IconType = props => ; export const MaximizeIcon: IconType = props => ; -export const MemoryIcon: IconType = props => ; +export const ResourceIcon: IconType = props => ; export const UnMaximizeIcon: IconType = props => ; export const MoreVerticalIcon: IconType = props => ; export const MoreHorizontalIcon: IconType = props => ;