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

action_button_group.vue « action_buttons « members « components « vue_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8356fdb60b145918afab88a166fae3aa35d0322c (plain)
1
2
3
4
5
6
7
8
9
10
11
<script>
export default {
  name: 'ActionButtonGroup',
};
</script>

<template>
  <div class="gl-display-flex gl-flex-align-items-center gl-justify-content-end gl-mx-n1">
    <slot></slot>
  </div>
</template>