Skip to content

Commit

Permalink
fix: add fill=currentColor to refresh icon for dark mode, closes #4195
Browse files Browse the repository at this point in the history
  • Loading branch information
pete-watters committed Sep 11, 2023
1 parent 015c4e1 commit 18d4526
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/components/icons/refresh-icon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ export function RefreshIcon(props: React.SVGProps<SVGSVGElement>) {
<svg width={16} height={16} fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
<path
d="M9.38.12a8 8 0 0 0-6.836 2.029l-.837-.837C1.077.682 0 1.128 0 2.019V6h3.981c.891 0 1.337-1.077.707-1.707l-.728-.729a6 6 0 0 1 9.98 3.591 1 1 0 1 0 1.98-.281A8 8 0 0 0 9.38.12ZM11.514 15.187A8 8 0 0 1 .08 9.127a1 1 0 0 1 1.98-.282 6 6 0 0 0 9.978 3.593l-.732-.73c-.63-.63-.183-1.708.708-1.708H16v3.987c0 .89-1.077 1.337-1.707.707l-.84-.84a7.994 7.994 0 0 1-1.94 1.333Z"
fill="#0C0C0D"
fill="currentColor"
/>
</svg>
);
Expand Down

0 comments on commit 18d4526

Please sign in to comment.