2018-05-09 12:01:36 +05:30
|
|
|
<script>
|
2021-01-29 00:20:46 +05:30
|
|
|
import { GlIcon, GlTooltipDirective } from '@gitlab/ui';
|
2018-05-09 12:01:36 +05:30
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {
|
2020-11-24 15:15:51 +05:30
|
|
|
GlIcon,
|
2018-05-09 12:01:36 +05:30
|
|
|
},
|
|
|
|
directives: {
|
2021-01-29 00:20:46 +05:30
|
|
|
GlTooltip: GlTooltipDirective,
|
2018-05-09 12:01:36 +05:30
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2020-11-24 15:15:51 +05:30
|
|
|
<gl-icon
|
2021-01-29 00:20:46 +05:30
|
|
|
v-gl-tooltip
|
2018-10-15 14:42:47 +05:30
|
|
|
:title="__('Part of merge request changes')"
|
2018-05-09 12:01:36 +05:30
|
|
|
:size="12"
|
2018-11-08 19:23:39 +05:30
|
|
|
name="git-merge"
|
2020-06-23 00:09:42 +05:30
|
|
|
class="gl-mr-3"
|
2018-05-09 12:01:36 +05:30
|
|
|
/>
|
|
|
|
</template>
|