stylex-webpack
Version:
The another Webpack Plugin for Facebook's StyleX
21 lines (18 loc) • 489 B
JavaScript
import { clsx } from 'clsx';
function stylexPropsWithClassName(stylexProps, ...inputs) {
return {
...stylexProps,
className: clsx(stylexProps.className, ...inputs)
};
}
function stylexPropsWithStyleObject(stylexProps, style) {
return {
...stylexProps,
style: {
...stylexProps.style,
...style
}
};
}
const DEFAULT_XSTYLE = [];
export { DEFAULT_XSTYLE, stylexPropsWithClassName, stylexPropsWithStyleObject };