zhengyiming
2025-03-13 07d73df3d817d01ce47f6c7b7a8d8514cd389295
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,
};