zhengyiming
2025-02-20 703c46d17731d1b437509f326c050d1d36838f74
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,
};