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"
|
||||
>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"
|
||||
|
@ -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",
|
||||
|
Loading…
x
Reference in New Issue
Block a user