debian-mirror-gitlab/app/assets/javascripts/issue_show/components/pinned_links.vue
2019-09-30 21:07:59 +05:30

31 lines
654 B
Vue

<script>
import { GlLink } from '@gitlab/ui';
import Icon from '~/vue_shared/components/icon.vue';
export default {
components: {
Icon,
GlLink,
},
props: {
zoomMeetingUrl: {
type: String,
required: false,
default: null,
},
},
};
</script>
<template>
<div v-if="zoomMeetingUrl" class="border-bottom mb-3 mt-n2">
<gl-link
:href="zoomMeetingUrl"
target="_blank"
class="btn btn-inverted btn-secondary btn-sm text-dark mb-3"
>
<icon name="brand-zoom" :size="14" />
<strong class="vertical-align-top">{{ __('Join Zoom meeting') }}</strong>
</gl-link>
</div>
</template>