Skip to content

Commit

Permalink
fix(dashboard): set correct icon hover color
Browse files Browse the repository at this point in the history
...accidentally set the wrong color in a previous commit
  • Loading branch information
eysi09 authored and edvald committed Aug 19, 2020
1 parent 4c849be commit d6aee9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dashboard/src/components/action-icon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ const IconLoading = styled(Icon)`

export const ActionIcon: React.FC<Props> = ({ inProgress, onClick, className, iconClassName, invert = false }) => {
const iconColor = invert ? colors.gardenWhite : colors.gardenGray
const iconHoverColor = invert ? colors.gardenGray : colors.gardenWhite
const iconHoverColor = invert ? colors.gardenGray : colors.gardenPink
const IconComp = inProgress ? IconLoading : Icon

return (
Expand Down

0 comments on commit d6aee9f

Please sign in to comment.