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