UNPKG

@material-ui/core

Version:

React components that implement Google's Material Design.

21 lines (16 loc) 528 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;