Skip to content

Commit

Permalink
Revert "Fix attribute typos in Rings (#158)"
Browse files Browse the repository at this point in the history
This reverts commit 912311f.
  • Loading branch information
mhnpd committed Dec 7, 2023
1 parent 912311f commit cb51aed
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/loader/Rings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ export const Rings: FunctionComponent<RingsProps> = ({
fill="none"
fillRule="evenodd"
transform="translate(1 1)"
stroke-width="2"
strokeWidth="2"
>
<circle cx="22" cy="22" r={radius} stroke-opacity="0">
<circle cx="22" cy="22" r={radius} strokeOpacity="0">
<animate
attributeName="r"
begin="1.5s"
Expand All @@ -63,7 +63,7 @@ export const Rings: FunctionComponent<RingsProps> = ({
repeatCount="indefinite"
/>
</circle>
<circle cx="22" cy="22" r={radius} stroke-opacity="0">
<circle cx="22" cy="22" r={radius} strokeOpacity="0">
<animate
attributeName="r"
begin="3s"
Expand All @@ -73,15 +73,15 @@ export const Rings: FunctionComponent<RingsProps> = ({
repeatCount="indefinite"
/>
<animate
attributeName="stroke-opacity"
attributeName="strokeOpacity"
begin="3s"
dur="3s"
values="1;0"
calcMode="linear"
repeatCount="indefinite"
/>
<animate
attributeName="stroke-width"
attributeName="strokeWidth"
begin="3s"
dur="3s"
values="2;0"
Expand Down

0 comments on commit cb51aed

Please sign in to comment.