Skip to content

Commit

Permalink
fix(spinner): fix the Spinner draw variant
Browse files Browse the repository at this point in the history
The stroke value was not set. This has been set to the current colour using css just for the draw
variant.
  • Loading branch information
stuarthendren committed Oct 26, 2021
1 parent bb6ce79 commit 166d75c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/components/Spinner/Spinner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ const StyledSpinner = styled(Logo, {
active: true,
variant: 'draw',
css: {
stroke: 'currentColor',
animation: `${strokeKeyframes} 3s cubic-bezier(.24,0,.37,1) alternate infinite, ${fillKeyframes} 3s cubic-bezier(1, 0, .5, 0) alternate infinite`,
},
},
Expand Down

0 comments on commit 166d75c

Please sign in to comment.