Skip to content

Commit

Permalink
fix(InlineLoading): reduce radius to fix animation (#15593)
Browse files Browse the repository at this point in the history
  • Loading branch information
tw15egan committed Jan 26, 2024
1 parent 8f2956e commit 0453e39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/react/src/components/Loading/Loading.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,14 +76,14 @@ function Loading({
className={`${prefix}--loading__background`}
cx="50%"
cy="50%"
r="44"
r="42"
/>
) : null}
<circle
className={`${prefix}--loading__stroke`}
cx="50%"
cy="50%"
r="44"
r={small ? '42' : '44'}
/>
</svg>
</div>
Expand Down

0 comments on commit 0453e39

Please sign in to comment.