## Usage

A tooltip is a message box that is displayed when a user hovers over or gives focus to a UI element.

Tooltips should be used sparingly and contain succinct, supplementary information.

```html
<w-button id="my-button" aria-labelledby="my-tooltip">Hover over me</w-button>
<w-tooltip id="my-tooltip" for="my-button">I am a tooltip</w-tooltip>
```
