mirror of
https://github.com/Instadapp/assembly.git
synced 2024-07-29 22:37:06 +00:00
15 lines
314 B
Vue
15 lines
314 B
Vue
|
<template>
|
||
|
<SVGSpinner v-bind="$attrs" class="animate-spin-loading" v-on="$listeners" />
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import { defineComponent } from '@nuxtjs/composition-api'
|
||
|
import SVGSpinner from '@/assets/icons/spinner.svg?inline'
|
||
|
|
||
|
export default defineComponent({
|
||
|
components: {
|
||
|
SVGSpinner,
|
||
|
},
|
||
|
})
|
||
|
</script>
|