blob: c91109d1ea414dc8988f94fc9a62f762ddf8dc77 [file] [log] [blame]
Yoshie Muranaka1be6b412020-04-16 12:03:38 -07001<template>
Dixsie Wolmers30f11f82020-11-10 16:07:56 -06002 <b-button
3 v-b-tooltip
4 variant="link"
5 class="btn-tooltip btn-icon-only"
6 :title="title"
Dixsie Wolmers30f11f82020-11-10 16:07:56 -06007 >
Yoshie Muranaka1be6b412020-04-16 12:03:38 -07008 <icon-tooltip />
SurenNeware6e2cb972020-12-24 20:58:16 +05309 <span class="sr-only">{{ $t('global.ariaLabel.tooltip') }}</span>
Yoshie Muranaka1be6b412020-04-16 12:03:38 -070010 </b-button>
11</template>
12
13<script>
14import IconTooltip from '@carbon/icons-vue/es/information/16';
15
16export default {
17 components: { IconTooltip },
18 props: {
19 title: {
20 type: String,
Derick Montague602e98a2020-10-21 16:20:00 -050021 default: '',
22 },
23 },
Yoshie Muranaka1be6b412020-04-16 12:03:38 -070024};
25</script>
26
27<style lang="scss" scoped>
28.btn-tooltip {
29 padding: 0;
30 line-height: 1em;
31 svg {
32 vertical-align: baseline;
33 }
34}
35</style>