@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
29 lines (28 loc) • 718 B
TypeScript
import { CSSProperties, ReactNode } from 'react';
export interface MobileNavBarProps {
center?: ReactNode;
className?: string;
classNames?: {
center?: string;
left?: string;
right?: string;
};
contentStyles?: {
center?: CSSProperties;
left?: CSSProperties;
right?: CSSProperties;
};
gap?: {
center?: number;
left?: number;
right?: number;
};
left?: ReactNode;
onBackClick?: () => void;
right?: ReactNode;
safeArea?: boolean;
showBackButton?: boolean;
style?: CSSProperties;
}
declare const MobileNavBar: import("react").NamedExoticComponent<MobileNavBarProps>;
export default MobileNavBar;