summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/ci/runner/components/cells/runner_summary_field.vue
blob: 742259ee49149534a4750ef2313f8c2cdffd3595 (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>
import { GlIcon, GlTooltipDirective } from '@gitlab/ui';

export default {
  components: {
    GlIcon,
  },
  directives: {
    GlTooltip: GlTooltipDirective,
  },
  props: {
    icon: {
      type: String,
      required: false,
      default: '',
    },
    tooltip: {
      type: String,
      required: false,
      default: '',
    },
  },
};
</script>

<template>
  <div v-gl-tooltip="tooltip" class="gl-display-inline-block gl-text-secondary gl-mb-3 gl-mr-4">
    <gl-icon v-if="icon" :name="icon" />
    <!-- display tooltip as a label for screen readers -->
    <span class="gl-sr-only">{{ tooltip }}</span>
    <slot></slot>
  </div>
</template>