Creates a CSSStyleSheet from markup text.
The CSS text
The CSSStyleSheet instance
import { createStyle } from 'deleight/css'const css = ` .hd { background-color: navy; color: white; }`;const cssStyleSheet = createStyle(css); Copy
import { createStyle } from 'deleight/css'const css = ` .hd { background-color: navy; color: white; }`;const cssStyleSheet = createStyle(css);
Creates a CSSStyleSheet from markup text.