debian-mirror-gitlab/app/assets/javascripts/static_site_editor/rich_content_editor/toolbar_item.vue

32 lines
556 B
Vue
Raw Normal View History

2020-05-24 23:13:21 +05:30
<script>
2020-06-23 00:09:42 +05:30
import { GlIcon, GlTooltipDirective } from '@gitlab/ui';
2020-05-24 23:13:21 +05:30
export default {
components: {
GlIcon,
},
2020-06-23 00:09:42 +05:30
directives: {
GlTooltip: GlTooltipDirective,
},
2020-05-24 23:13:21 +05:30
props: {
icon: {
type: String,
required: true,
},
2020-06-23 00:09:42 +05:30
tooltip: {
type: String,
required: true,
},
2020-05-24 23:13:21 +05:30
},
};
</script>
<template>
2021-04-29 21:17:54 +05:30
<button
v-gl-tooltip="{ title: tooltip }"
:aria-label="tooltip"
class="p-0 gl-display-flex toolbar-button"
>
2020-06-23 00:09:42 +05:30
<gl-icon class="gl-mx-auto gl-align-self-center" :name="icon" />
2020-05-24 23:13:21 +05:30
</button>
</template>