xref: /openbmc/webui-vue/docs/guide/components/info-tooltip/index.md (revision f6df801b384118b946bb3b7b3248832ec70cfd0a)
1# InfoTooltip
2
3The `InfoTooltip` is a custom component that uses a Bootstrap-vue tooltip with an info icon. This custom component requires a title property containing the tooltip text to display to the user.
4
5[Read more about the Bootstrap-vue tooltip component](https://bootstrap-vue.org/docs/components/tooltip)
6
7## Example
8
9```vue
10<info-tooltip
11  :title="Title" //should be translated
12/>
13```
14
15![Tooltip example](./info-tooltip.png)
16