Files
starface-outlook-sync-addin/node_modules/@griffel/core/runtime/compileStaticCSS.cjs.js
T
Stefan Hacker 37ad745546 first commit
2026-04-03 09:38:48 +02:00

13 lines
408 B
JavaScript

'use strict';
var cssifyObject = require('./utils/cssifyObject.cjs.js');
var compileCSSRules = require('./compileCSSRules.cjs.js');
function compileStaticCSS(property, value) {
const cssRule = `${property} {${cssifyObject.cssifyObject(value)}}`;
return compileCSSRules.compileCSSRules(cssRule, false)[0];
}
exports.compileStaticCSS = compileStaticCSS;
//# sourceMappingURL=compileStaticCSS.cjs.js.map