Remove erroneous stroke width definition in refresh circle icon

The `circle` element in the "Refresh circle" icon included a hard coded `stroke-width`, which caused the circle to not inherit the parent `svg` `stroke-width`. This change fixes that bug.
This commit is contained in:
Ali Torbati 2023-10-30 12:22:08 -07:00 committed by GitHub
parent b7ca56b873
commit 643afe5dc7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,5 @@
<svg width="24" height="24" stroke-width="1.5" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="1.5"/>
<circle cx="12" cy="12" r="10" stroke="currentColor"/>
<path d="M16.5829 9.66667C15.8095 8.09697 14.043 7 11.9876 7C9.38854 7 7.25148 8.75408 7 11" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M14.4939 9.72222H16.4001C16.7315 9.72222 17.0001 9.45359 17.0001 9.12222V7.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M7.41707 13.6667C8.19054 15.6288 9.95698 17 12.0124 17C14.6115 17 16.7485 14.8074 17 12" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>

Before

Width:  |  Height:  |  Size: 845 B

After

Width:  |  Height:  |  Size: 826 B