UNPKG

@uiw/react-native

Version:
13 lines (12 loc) 379 B
import { ViewProps, ViewStyle } from 'react-native'; export interface TabsProps extends ViewProps { /** 子元素 */ children?: JSX.Element | Array<JSX.Element>; /** 容器样式 */ style?: ViewStyle; } declare function Tabs(props: TabsProps): JSX.Element | null; declare namespace Tabs { var Item: typeof import("./TabsItem").default; } export default Tabs;