Skip to content

Commit

Permalink
1623 Changing color of checkmark to "primary" and the minus icon to "…
Browse files Browse the repository at this point in the history
…danger"
  • Loading branch information
ricardovdheijden committed Jan 6, 2025
1 parent 9f4f0f4 commit 7bcc46e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ export const WfoInsyncIcon = ({ inSync }: WfoInsyncIconProps) => {
<WfoCheckmarkCircleFill
height={20}
width={20}
color={theme.colors.mediumShade}
color={theme.colors.primary}
/>
) : (
<WfoMinusCircleFill
height={20}
width={20}
color={theme.colors.warningText}
color={theme.colors.danger}
/>
);
};

0 comments on commit 7bcc46e

Please sign in to comment.