Skip to content

Commit

Permalink
1623 Changes colors of WfoInsyncIcon
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardovdheijden committed Dec 20, 2024
1 parent 19d1d88 commit 9f4f0f4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions .changeset/slimy-points-press.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@orchestrator-ui/orchestrator-ui-components': patch
---

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
@@ -1,7 +1,7 @@
import React from 'react';

import { useOrchestratorTheme } from '../../hooks';
import { WfoCheckmarkCircleFill, WfoMinusCircleOutline } from '../../icons';
import { useOrchestratorTheme } from '@/hooks';
import { WfoCheckmarkCircleFill, WfoMinusCircleFill } from '@/icons';

interface WfoInsyncIconProps {
inSync: boolean;
Expand All @@ -14,13 +14,13 @@ export const WfoInsyncIcon = ({ inSync }: WfoInsyncIconProps) => {
<WfoCheckmarkCircleFill
height={20}
width={20}
color={theme.colors.primary}
color={theme.colors.mediumShade}
/>
) : (
<WfoMinusCircleOutline
<WfoMinusCircleFill
height={20}
width={20}
color={theme.colors.mediumShade}
color={theme.colors.warningText}
/>
);
};

0 comments on commit 9f4f0f4

Please sign in to comment.