test-nut-ui
Version:
<p align="center"> <img alt="logo" src="https://img11.360buyimg.com/imagetools/jfs/t1/211965/25/7152/22022/61b16785E433119bb/aa41d7a9f7e823f3.png" width="150" style="margin-bottom: 10px;"> </p>
16 lines (15 loc) • 533 B
TypeScript
import React, { FunctionComponent } from 'react';
import { BasicComponent } from '../../utils/typings';
export interface NavBarProps extends BasicComponent {
left: React.ReactNode;
back: React.ReactNode;
right: React.ReactNode;
fixed: boolean;
divider: boolean;
safeAreaInsetTop: boolean;
placeholder: boolean;
zIndex: number | string;
onBackClick: (e: React.MouseEvent<HTMLElement>) => void;
children?: React.ReactNode;
}
export declare const NavBar: FunctionComponent<Partial<NavBarProps>>;