Skip to content

Commit

Permalink
Default values
Browse files Browse the repository at this point in the history
  • Loading branch information
Ironicbay committed Apr 26, 2024
1 parent d4be828 commit 2855547
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/components/ms-spinner/MsSpinner.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@
<vue3-lottie
class="container-spinner"
:animation-data="SpinnerJSON"
:height="height"
:width="width"
:speed="speed"
:height="height || 24"
:width="width || 24"
:speed="speed || 1"
:loop="true"
/>
</div>
</template>

<script setup lang="ts">
import SpinnerJSON from '@lib/assets/spinner.json'
import SpinnerJSON from '@lib/assets/spinner.json';
import { Translatable } from '@lib/services/translation';
import { IonText } from '@ionic/vue';
import { Vue3Lottie } from 'vue3-lottie';
Expand Down

0 comments on commit 2855547

Please sign in to comment.