wix-style-react
Version:
wix-style-react
16 lines (13 loc) • 442 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.createAutoExampleProps = createAutoExampleProps;
// This is in a separate file than the AutoExampleWrapper because it is consumed by e2e test which is Node code not browser code.
function createAutoExampleProps(autoExampleProps) {
// We might add here also dark background
var rtl = autoExampleProps.rtl;
return {
autoExample__rtl: rtl
};
}