summaryrefslogtreecommitdiff
path: root/src/components/Global/StatusIcon.vue
blob: 63155c9a2e50233178dddabd6a24e645af2d880e (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
<template>
  <span :class="['status-icon', status]">
    <icon-success v-if="status === 'success'" />
    <icon-danger v-else-if="status === 'danger'" />
    <icon-secondary v-else />
  </span>
</template>

<script>
import IconCheckmark from '@carbon/icons-vue/es/checkmark--filled/20';
import IconWarning from '@carbon/icons-vue/es/warning--filled/20';
import IconError from '@carbon/icons-vue/es/error--filled/20';

export default {
  name: 'StatusIcon',
  props: ['status'],
  components: {
    iconSuccess: IconCheckmark,
    iconDanger: IconWarning,
    iconSecondary: IconError
  }
};
</script>

<style lang="scss" scoped>
.status-icon {
  vertical-align: text-bottom;
  &.success {
    fill: $success;
  }
  &.danger {
    fill: $danger;
  }
  &.secondary {
    fill: $secondary;
  }
}
</style>