Commit 1d849927 authored by aballerr's avatar aballerr Committed by GitHub

fix: fixing loader (#5138)

Fixing bug in loader that would not use correct stroke color
parent 1893d258
......@@ -14,7 +14,7 @@ const StyledSVG = styled.svg<{ size: string; stroke?: string }>`
height: ${({ size }) => size};
width: ${({ size }) => size};
path {
stroke: ${({ stroke, theme }) => theme.accentActive};
stroke: ${({ stroke, theme }) => stroke ?? theme.accentActive};
}
`
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment