zmp-react
Version:
Build full featured iOS & Android apps using ZMP & React
26 lines (21 loc) • 554 B
TypeScript
import * as React from 'react';
interface NavTitleProps {
slot?: string;
id?: string | number;
className?: string;
style?: React.CSSProperties;
title ?: string;
subtitle ?: string;
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 NavTitle: React.FunctionComponent<NavTitleProps>;
export default NavTitle;