seti-ramesesv1
Version:
Reusable components and context for Next.js apps
30 lines (26 loc) • 654 B
JavaScript
import { internal_serializeStyles } from '../../styled-engine/esm/index.js';
function preprocessStyles(input) {
const {
variants,
...style
} = input;
const result = {
variants,
style: internal_serializeStyles(style),
isProcessed: true
};
// Not supported on styled-components
if (result.style === style) {
return result;
}
if (variants) {
variants.forEach(variant => {
if (typeof variant.style !== 'function') {
variant.style = internal_serializeStyles(variant.style);
}
});
}
return result;
}
export { preprocessStyles as default };
//# sourceMappingURL=preprocessStyles.js.map