The CSSStyleSheet instance to wrap.
An instance of StyleSheet which holds the given CSSStyleSheet
in its css
property.
import { wrap, createStyle } from 'deleight/css'
const css = 'p {border: none;}, a {text-decoration: none;}'
const sheet = wrap(createStyle(css))
Wraps a regular
CSSStyleSheet
with an instance of StyleSheet. This is simply an alia fornew StyleSheet(cssStyleSheet)
.