summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/components/loading_icon.vue
blob: 41b1d0165b0871b6fe259de1cdc38a3594a4f3e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<script>
  export default {
    props: {
      label: {
        type: String,
        required: false,
        default: 'Loading',
      },

      size: {
        type: String,
        required: false,
        default: '1',
      },
    },

    computed: {
      cssClass() {
        return `fa-${this.size}x`;
      },
    },
  };
</script>
<template>
  <div class="text-center">
    <i
      class="fa fa-spin fa-spinner"
      :class="cssClass"
      aria-hidden="true"
      :aria-label="label">
    </i>
  </div>
</template>