blob: 0e5c3b5d941cc46c41af2930491de4a34dae8498 [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>
Ed Tanous7d6b44c2024-03-23 14:56:34 -070028@import '@/assets/styles/bmc/helpers/_index.scss';
29@import '@/assets/styles/bootstrap/_helpers.scss';
30
Yoshie Muranaka1be6b412020-04-16 12:03:38 -070031.btn-tooltip {
32 padding: 0;
33 line-height: 1em;
34 svg {
35 vertical-align: baseline;
36 }
37}
38</style>