zmp-react
Version:
Build full featured iOS & Android apps using ZMP & React
29 lines (23 loc) • 620 B
TypeScript
import * as React from 'react';
import { SwiperOptions } from 'swiper';
interface TabsProps {
slot?: string;
id?: string | number;
className?: string;
style?: React.CSSProperties;
animated ?: boolean;
swipeable ?: boolean;
routable ?: boolean;
swiperParams ?: SwiperOptions;
ref?: React.MutableRefObject<{el: HTMLElement | null;}>;
color?: string;
colorTheme?: string;
textColor?: string;
bgColor?: string;
borderColor?: string;
rippleColor?: string;
themeDark?: boolean;
children?: React.ReactNode;
}
declare const Tabs: React.FunctionComponent<TabsProps>;
export default Tabs;