2018-03-27 10:56:22 -04:00
|
|
|
<script>
|
2020-11-09 13:09:11 -05:00
|
|
|
import { GlIcon, GlTooltipDirective } from '@gitlab/ui';
|
2018-03-27 10:56:22 -04:00
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {
|
2020-08-24 11:10:11 -04:00
|
|
|
GlIcon,
|
2018-03-27 10:56:22 -04:00
|
|
|
},
|
|
|
|
directives: {
|
2020-11-09 13:09:11 -05:00
|
|
|
GlTooltip: GlTooltipDirective,
|
2018-03-27 10:56:22 -04:00
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2020-08-24 11:10:11 -04:00
|
|
|
<gl-icon
|
2020-11-09 13:09:11 -05:00
|
|
|
v-gl-tooltip
|
2018-05-08 04:18:45 -04:00
|
|
|
:title="__('Part of merge request changes')"
|
2018-03-27 10:56:22 -04:00
|
|
|
:size="12"
|
2018-06-11 05:49:47 -04:00
|
|
|
name="git-merge"
|
2020-06-01 11:08:16 -04:00
|
|
|
class="gl-mr-3"
|
2018-03-27 10:56:22 -04:00
|
|
|
/>
|
|
|
|
</template>
|