one
Version:
One is a new React Framework that makes Vite serve both native and web.
21 lines (20 loc) • 512 B
JavaScript
import { NAVIGATOR_CONFIG } from "../../headless/children.native.js";
function StackHeaderLeft(_props) {
return null;
}
Object.assign(StackHeaderLeft, {
[NAVIGATOR_CONFIG]: true
});
function appendStackHeaderLeftPropsToOptions(options, props) {
if (!props.asChild) {
return options;
}
return {
...options,
headerLeft: function () {
return props.children;
}
};
}
export { StackHeaderLeft, appendStackHeaderLeftPropsToOptions };
//# sourceMappingURL=StackHeaderLeft.native.js.map