Skip to content

Commit bbf8983

Browse files
1623 Changes colors of WfoInsyncIcon (#1643)
* 1623 Changes colors of WfoInsyncIcon * 1623 Changing color of checkmark to "primary" and the minus icon to "danger"
1 parent 19d1d88 commit bbf8983

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

.changeset/slimy-points-press.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
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

packages/orchestrator-ui-components/src/components/WfoInsyncIcon/WfoInsyncIcon.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import 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

66
interface 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
};

0 commit comments

Comments
 (0)