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

pod_box.vue « components « serverless « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 04d3641bce3d8d1d5afb6cd8c032337b67e4589d (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
<script>
export default {
  props: {
    count: {
      type: Number,
      required: true,
    },
    color: {
      type: String,
      required: false,
      default: 'green',
    },
  },
  methods: {
    boxOffset(i) {
      return 20 * (i - 1);
    },
  },
};
</script>

<template>
  <svg :width="boxOffset(count + 1)" :height="20">
    <rect
      v-for="i in count"
      :key="i"
      width="15"
      height="15"
      rx="5"
      ry="5"
      :fill="color"
      :x="boxOffset(i)"
      y="0"
    />
  </svg>
</template>