File tree Expand file tree Collapse file tree 2 files changed +9
-4
lines changed
packages/orchestrator-ui-components/src/components/WfoInsyncIcon Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ ' @orchestrator-ui/orchestrator-ui-components ' : patch
3+ ---
4+
5+ 1623 Changes the colors of the WfoInsyncIcon to make the no-in-sync state more prominent
Original file line number Diff line number Diff line change 11import React from 'react' ;
22
3- import { useOrchestratorTheme } from '../.. /hooks' ;
4- import { WfoCheckmarkCircleFill , WfoMinusCircleOutline } from '../.. /icons' ;
3+ import { useOrchestratorTheme } from '@ /hooks' ;
4+ import { WfoCheckmarkCircleFill , WfoMinusCircleFill } from '@ /icons' ;
55
66interface WfoInsyncIconProps {
77 inSync : boolean ;
@@ -17,10 +17,10 @@ export const WfoInsyncIcon = ({ inSync }: WfoInsyncIconProps) => {
1717 color = { theme . colors . primary }
1818 />
1919 ) : (
20- < WfoMinusCircleOutline
20+ < WfoMinusCircleFill
2121 height = { 20 }
2222 width = { 20 }
23- color = { theme . colors . mediumShade }
23+ color = { theme . colors . danger }
2424 />
2525 ) ;
2626} ;
You can’t perform that action at this time.
0 commit comments