UNPKG

nexwidget

Version:

An ESNext Web Component library.

12 lines (11 loc) 293 B
export class CSSResult { #styleSheet; constructor(strings) { this.#styleSheet = new CSSStyleSheet(); this.#styleSheet.replaceSync(strings[0]); } get styleSheet() { return this.#styleSheet; } } export const css = (strings) => new CSSResult(strings).styleSheet;