UNPKG

material-ui-cordova

Version:

React components that implement Google's Material Design.

22 lines (17 loc) 517 B
import * as React from 'react'; import { StandardProps } from '..'; export interface BottomNavigationProps extends StandardProps< React.HTMLAttributes<HTMLDivElement>, BottomNavigationClassKey, 'onChange' > { children: React.ReactNode; onChange?: (event: React.ChangeEvent<{}>, value: any) => void; showLabels?: boolean; value?: any; } export type BottomNavigationClassKey = | 'root' ; declare const BottomNavigation: React.ComponentType<BottomNavigationProps>; export default BottomNavigation;