zmp-react
Version:
Build full featured iOS & Android apps using ZMP & React
34 lines (29 loc) • 802 B
TypeScript
import * as React from 'react';
interface TabbarProps {
slot?: string;
id?: string | number;
className?: string;
style?: React.CSSProperties;
labels ?: boolean;
scrollable ?: boolean;
hidden ?: boolean;
noShadow ?: boolean;
noHairline ?: boolean;
position ?: string;
top ?: boolean;
bottom ?: boolean;
fill?: boolean;
color?: string;
colorTheme?: string;
textColor?: string;
bgColor?: string;
borderColor?: string;
rippleColor?: string;
themeDark?: boolean;
onTabbarHide ?: (...args: any[]) => void;
onTabbarShow ?: (...args: any[]) => void;
ref?: React.MutableRefObject<{el: HTMLElement | null; hide: () => void; show: () => void;}>;
children?: React.ReactNode;
}
declare const Tabbar: React.FunctionComponent<TabbarProps>;
export default Tabbar;