zhengyiming
2025-03-13 d580f043716d30f9617ed7f3f49a7e80d54b9865
apps/h5/src/components/NavigationBar/commonNavigationBar.ts
New file
@@ -0,0 +1,25 @@
import { navigationBarProps } from './navBar';
export const commonNavigationBarProps = {
  title: {
    type: String,
    default: '',
  },
  showLeftArrow: {
    type: Boolean,
    default: true,
  },
  showNavigationBar: {
    type: Boolean,
    default: true,
  },
  navigationArrowWhite: {
    type: Boolean,
    default: false,
  },
  isAbsolute: {
    type: Boolean,
    default: true,
  },
  ...navigationBarProps,
};