diff --git a/plugins/orchestrator/src/components/OrchestratorIcon.tsx b/plugins/orchestrator/src/components/OrchestratorIcon.tsx new file mode 100644 index 0000000000..8b688e192b --- /dev/null +++ b/plugins/orchestrator/src/components/OrchestratorIcon.tsx @@ -0,0 +1,13 @@ +import React from 'react'; + +import { SvgIcon, SvgIconProps } from '@material-ui/core'; + +const OrchestratorIcon = (props: SvgIconProps) => ( + + + + + +); + +export default OrchestratorIcon; diff --git a/plugins/orchestrator/src/index.ts b/plugins/orchestrator/src/index.ts index 93d5eefdb7..81f6b5a71c 100644 --- a/plugins/orchestrator/src/index.ts +++ b/plugins/orchestrator/src/index.ts @@ -11,4 +11,4 @@ export { newWorkflowRef, createWorkflowRouteRef, } from './routes'; -export { default as OrchestratorIcon } from '@material-ui/icons/Receipt'; +export { default as OrchestratorIcon } from './components/OrchestratorIcon';