blob: 5d604503a62969e6c0d0f0c407ef99950ae05a04 [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"
7 :aria-label="$t('global.ariaLabel.tooltip')"
8 >
Yoshie Muranaka1be6b412020-04-16 12:03:38 -07009 <icon-tooltip />
10 </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>