Welcome to mirror list, hosted at ThFree Co, Russian Federation.

user_avatar_svg.vue « user_avatar « components « vue_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7ed4da84120ec972a9d4b438b85f621035c2443b (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
<script>
/* This is a re-usable vue component for rendering a user avatar svg (typically
  for a blank state). It will receive styles comparable to the user avatar,
  but no image is loaded, it isn't wrapped in a link, and tooltips aren't supported.
  The svg and avatar size can be configured by props passed to this component.

  Sample configuration:

  <user-avatar-svg
    :svg="potentialApproverSvg"
    :size="20"
  />

*/

export default {
  props: {
    svg: {
      type: String,
      required: true,
    },
    size: {
      type: Number,
      required: false,
      default: 20,
    },
  },
  computed: {
    avatarSizeClass() {
      return `s${this.size}`;
    },
  },
};
</script>

<template>
  <svg :class="avatarSizeClass" :height="size" :width="size" v-html="svg" />
</template>