summaryrefslogtreecommitdiff
path: root/src/components/_sila/Global/Alert.vue
blob: 8b9b0d90cb3dc73c5043d8b534d9f7024a64201d (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<template>
  <b-alert :show="show" :variant="variant" :class="{ small }">
    <div
      v-if="
        variant == 'info' ||
        variant == 'success' ||
        variant == 'warning' ||
        variant == 'danger'
      "
      class="alert-icon"
    >
      <status-icon :status="variant" />
    </div>
    <div class="alert-content">
      <div class="alert-msg regular-14px">
        <slot />
      </div>
    </div>
    <div class="alert-action">
      <slot name="action"></slot>
    </div>
  </b-alert>
</template>

<script>
import StatusIcon from '@/components/_sila/Global/StatusIcon';
import { BAlert } from 'bootstrap-vue';

export default {
  name: 'Alert',
  components: {
    BAlert: BAlert,
    StatusIcon: StatusIcon,
  },
  props: {
    show: {
      type: Boolean,
      default: true,
    },
    variant: {
      type: String,
      default: '',
    },
    small: Boolean,
  },
};
</script>