Skip to content

Commit cfa814e

Browse files
committed
Feat: CSS - css.raw() API support #223
1 parent ee6e517 commit cfa814e

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

packages/css/src/css/index.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,12 @@ export function cssImpl(style: ComplexCSSRule, debugId?: string) {
105105
return vStyle(transform(style), debugId);
106106
}
107107

108+
function cssRaw(style: ComplexCSSRule) {
109+
return style;
110+
}
111+
108112
export const css = Object.assign(cssImpl, {
113+
raw: cssRaw,
109114
multiple: cssVariants
110115
});
111116

0 commit comments

Comments
 (0)