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" <span class="text-gray-900 font-normal text-sm mr-2"
>Carregando liquidez das redes.</span >Carregando liquidez das redes.</span
> >
<SpinnerComponent <SpinnerComponent width="4" height="4"></SpinnerComponent>
width="4"
height="4"
fillColor="white"
></SpinnerComponent>
</div> </div>
<div <div
class="flex justify-center" class="flex justify-center"

View File

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