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

mr_widget_icon.vue « components « vue_merge_request_widget « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0c36e1ccd7fb08acb7b439ed9c132f8788cda1c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<script>
import { GlIcon } from '@gitlab/ui';

export default {
  components: { GlIcon },
  props: {
    name: {
      type: String,
      required: true,
    },
  },
};
</script>

<template>
  <div class="circle-icon-container gl-mr-3 align-self-start gl-mt-2">
    <gl-icon :name="name" :size="24" />
  </div>
</template>