UNPKG

@vnmfify/core

Version:

```shell npm i @vnmfify/core -S ```

14 lines (13 loc) 441 B
import { ViewProps } from "@vnxjs/components/types/View"; import { ReactNode } from "react"; import { SafeAreaPosition } from "../safe-area"; export interface NavbarProps extends ViewProps { bordered?: boolean; fixed?: boolean; placeholder?: boolean; safeArea?: SafeAreaPosition; title?: ReactNode; children?: ReactNode; } declare function Navbar(props: NavbarProps): JSX.Element; export default Navbar;