InfoWidget

InfoWidget — inline ⓘ icon that shows a hover tooltip and opens a docs page on click. Usage (HTML):Usage (JS): const w = document.createElement('info-widget'); w.setAttribute('message', 'Some explanation'); w.setAttribute('href', '/docs/some-page'); someElement.appendChild(w); Attributes: message — text shown in the hover tooltip href — URL opened in a new tab when the icon is clicked (optional)