UNPKG

reactjs-bottom-navigation

Version:

A flexible bottom navigation component for React applications

13 lines (12 loc) 458 B
import React from "react"; import { BottomNavigationItemType } from "./BottomNavigation"; interface BottomNavigationItemProps { item: BottomNavigationItemType; current: number | null; id: number; getItemStyle: () => React.CSSProperties; onClick: (id: number, item: BottomNavigationItemType) => void; style?: React.CSSProperties; } export declare const BottomNavigationItem: React.FC<BottomNavigationItemProps>; export {};