X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/b352c3862814fe0bdd2b5a40b1dc8171474dbb48..46605be9b9f2721cc9848323f904fb0ace5a2dbd:/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 8ec4c59b87..08c2e8f454 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"; @@ -171,6 +172,20 @@ export const TerminalIcon: IconType = (props: any) => ( ) +//https://pictogrammers.com/library/mdi/icon/chevron-double-right/ +export const DoubleRightArrows: IconType = (props: any) => ( + + + +) + +//https://pictogrammers.com/library/memory/icon/box-light-vertical/ +export const VerticalLineDivider: IconType = (props: any) => ( + + + +) + export type IconType = React.SFC<{ className?: string; style?: object }>; export const AddIcon: IconType = props => ; @@ -267,3 +282,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 => ;