fix: fixing loader (#5138)

Fixing bug in loader that would not use correct stroke color
This commit is contained in:
aballerr 2022-11-09 11:11:18 -05:00 committed by GitHub
parent 1893d258b5
commit 1d849927ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -14,7 +14,7 @@ const StyledSVG = styled.svg<{ size: string; stroke?: string }>`
height: ${({ size }) => size}; height: ${({ size }) => size};
width: ${({ size }) => size}; width: ${({ size }) => size};
path { path {
stroke: ${({ stroke, theme }) => theme.accentActive}; stroke: ${({ stroke, theme }) => stroke ?? theme.accentActive};
} }
` `