UNPKG

antd-mobile

Version:
12 lines (11 loc) 386 B
import type { FC, ReactNode } from 'react'; import { NativeProps } from '../../utils/native-props'; export declare type NavBarProps = { back?: ReactNode; backArrow?: boolean | ReactNode; left?: ReactNode; right?: ReactNode; onBack?: () => void; children?: ReactNode; } & NativeProps<'--height' | '--border-bottom'>; export declare const NavBar: FC<NavBarProps>;