fix fill color from spinner component to always white instead of passing as parameter
This commit is contained in:
parent
995ba3ebd9
commit
5cb9103ef5
@ -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"
|
||||||
|
@ -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",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user