Skip to content

Commit

Permalink
Merge pull request #1118 from voronor/patch-4
Browse files Browse the repository at this point in the history
Fix invalid stroke-width attribute Update Loader.tsx
  • Loading branch information
krofax authored Nov 15, 2024
2 parents 8fe3cee + 88f3a7c commit 3dc670f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/calculator/Loader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const Loader: React.FC = () => {
<circle
fill="#FF0420"
stroke="#FF0420"
stroke-width="15"
strokeWidth="15"
r="15"
cx="40"
cy="65"
Expand All @@ -25,7 +25,7 @@ export const Loader: React.FC = () => {
<circle
fill="#FF0420"
stroke="#FF0420"
stroke-width="15"
strokeWidth="15"
r="15"
cx="100"
cy="65"
Expand All @@ -43,7 +43,7 @@ export const Loader: React.FC = () => {
<circle
fill="#FF0420"
stroke="#FF0420"
stroke-width="15"
strokeWidth="15"
r="15"
cx="160"
cy="65"
Expand Down

0 comments on commit 3dc670f

Please sign in to comment.