UNPKG

app-walkthrough

Version:

An intuitive guided walkthrough library with UI highlighting and voice narration for web apps.

9 lines (8 loc) 308 B
export function createButton(label, id, onClick, customClasses = "") { const button = document.createElement("button"); button.id = id; button.className = customClasses.trim().replace(/\s+/g, " "); button.addEventListener("click", onClick); button.innerText = label; return button; }