UNPKG

antd-mobile-taro-ui

Version:

以antd-mobile为设计标准,基于taro框架的微信小程序组件库

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