zym2525
2025-03-09 c4db0ed5c4218dba29c9924511dc2bbcf169d468
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,
};