From da3d8fc7a33f01729ead1d515d16ebefc47326c3 Mon Sep 17 00:00:00 2001 From: Guilherme Caponetto <638737+caponetto@users.noreply.github.com> Date: Thu, 18 Jan 2024 02:29:26 -0300 Subject: [PATCH] fix(orchestrator): update the navigation bar icon according to UX (#1078) --- .../src/components/OrchestratorIcon.tsx | 13 +++++++++++++ plugins/orchestrator/src/index.ts | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 plugins/orchestrator/src/components/OrchestratorIcon.tsx 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';