zhengyiming
2025-03-07 eb194e0179c83ba86f1fcac398057bf423aaab34
apps/h5/src/components/NavigationBar/navBar.ts
New file
@@ -0,0 +1,14 @@
export const navigationBarProps = {
  mode: {
    type: String as PropType<'light' | 'dark'>,
    default: 'light',
  },
  plain: {
    type: Boolean,
    default: false,
  },
  hasBorder: {
    type: Boolean,
    default: false,
  },
};