UNPKG

@msom/common

Version:

@msom/common

6 lines (5 loc) 167 B
export function addStyle(cssStyle: string) { const style = document.createElement("style"); style.innerHTML = cssStyle; document.head.appendChild(style); }