mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-07-23 00:45:28 +00:00
23 lines
352 B
Vue
23 lines
352 B
Vue
<script>
|
|
import { GlIcon, GlTooltipDirective } from '@gitlab/ui';
|
|
|
|
export default {
|
|
components: {
|
|
GlIcon,
|
|
},
|
|
directives: {
|
|
GlTooltip: GlTooltipDirective,
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<gl-icon
|
|
v-gl-tooltip
|
|
:title="__('Part of merge request changes')"
|
|
:size="12"
|
|
name="merge-request"
|
|
class="gl-mr-3"
|
|
/>
|
|
</template>
|