artwork-react-native
Version:
artwork design master for react-native
18 lines (17 loc) • 456 B
TypeScript
/// <reference types="react" />
import { ReactNode } from 'react';
export interface NavBarProps {
children?: ReactNode;
style?: React.CSSProperties | {} | Array<{}>;
hideNav?: boolean;
icon?: any;
leftContent?: any;
onLeftPressed?: any;
rightContent?: any;
}
export interface StatusBarProps {
barStyle: "default" | "light-content" | "dark-content";
hidden?: boolean;
translucent?: boolean;
animated?: boolean;
}