X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/28b6afc1e8ccf652c7a8fd43e22a8ac788febd85..f79d1cdf7696a3bbcc374df5ce4d1761a28a5ea5:/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 5f3f4e659b..1ba88d25b2 100644 --- a/services/workbench2/src/components/icon/icon.tsx +++ b/services/workbench2/src/components/icon/icon.tsx @@ -77,6 +77,7 @@ import NotInterested from "@material-ui/icons/NotInterested"; import Image from "@material-ui/icons/Image"; import Stop from "@material-ui/icons/Stop"; import FileCopy from "@material-ui/icons/FileCopy"; +import ShowChart from "@material-ui/icons/ShowChart"; // Import FontAwesome icons import { library } from "@fortawesome/fontawesome-svg-core"; @@ -84,13 +85,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) => ( @@ -164,6 +165,20 @@ export const CheckboxMultipleBlankOutline: IconType = (props: any) => ( ); +//https://pictogrammers.com/library/mdi/icon/console/ +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 => ; @@ -202,7 +217,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 => ; @@ -260,3 +275,4 @@ export const StartIcon: IconType = props => ; export const StopIcon: IconType = props => ; export const SelectAllIcon: IconType = props => ; export const SelectNoneIcon: IconType = props => ; +export const ShowChartIcon: IconType = props => ;