UNPKG

zmp-react

Version:

Build full featured iOS & Android apps using ZMP & React

24 lines (19 loc) 513 B
import * as React from 'react'; interface NavRightProps { slot?: string; id?: string | number; className?: string; style?: React.CSSProperties; sliding ?: boolean; color?: string; colorTheme?: string; textColor?: string; bgColor?: string; borderColor?: string; rippleColor?: string; themeDark?: boolean; ref?: React.MutableRefObject<{el: HTMLElement | null}>; children?: React.ReactNode; } declare const NavRight: React.FunctionComponent<NavRightProps>; export default NavRight;