fix fill color from spinner component to always white instead of passing as parameter

This commit is contained in:
RcleydsonR 2023-02-24 00:49:06 -03:00
parent 995ba3ebd9
commit 5cb9103ef5
2 changed files with 2 additions and 6 deletions

View File

@ -194,11 +194,7 @@ watch(walletAddress, (): void => {
<span class="text-gray-900 font-normal text-sm mr-2"
>Carregando liquidez das redes.</span
>
<SpinnerComponent
width="4"
height="4"
fillColor="white"
></SpinnerComponent>
<SpinnerComponent width="4" height="4"></SpinnerComponent>
</div>
<div
class="flex justify-center"

View File

@ -11,7 +11,7 @@ const getCustomClass = () => {
return [
`w-${props.width}`,
`h-${props.height}`,
`fill-${props.fillColor}`,
`fill-white`,
"text-gray-200",
"animate-spin",
"dark:text-gray-600",