UNPKG

@mui/material

Version:

Material UI is an open-source React component library that implements Google's Material Design. It's comprehensive and can be used in production out of the box.

62 lines (61 loc) 2.34 kB
import * as React from 'react'; import { SxProps } from '@mui/system'; import { Theme } from "../index.js"; import { ButtonBaseTypeMap, ExtendButtonBase, ExtendButtonBaseTypeMap } from "../ButtonBase/index.js"; import { OverrideProps } from "../OverridableComponent/index.js"; import { BottomNavigationActionClasses } from "./bottomNavigationActionClasses.js"; export interface BottomNavigationActionOwnProps { /** * This prop isn't supported. * Use the `component` prop if you need to change the children structure. */ children?: React.ReactNode; /** * Override or extend the styles applied to the component. */ classes?: Partial<BottomNavigationActionClasses>; /** * The icon to display. */ icon?: React.ReactNode; /** * The label element. */ label?: React.ReactNode; /** * If `true`, the `BottomNavigationAction` will show its label. * By default, only the selected `BottomNavigationAction` * inside `BottomNavigation` will show its label. * * The prop defaults to the value (`false`) inherited from the parent BottomNavigation component. */ showLabel?: boolean; /** * The system prop that allows defining system overrides as well as additional CSS styles. */ sx?: SxProps<Theme>; /** * You can provide your own value. Otherwise, we fallback to the child position index. */ value?: any; } export type BottomNavigationActionTypeMap<AdditionalProps, RootComponent extends React.ElementType> = ExtendButtonBaseTypeMap<{ props: AdditionalProps & BottomNavigationActionOwnProps; defaultComponent: RootComponent; }>; /** * * Demos: * * - [Bottom Navigation](https://mui.com/material-ui/react-bottom-navigation/) * * API: * * - [BottomNavigationAction API](https://mui.com/material-ui/api/bottom-navigation-action/) * - inherits [ButtonBase API](https://mui.com/material-ui/api/button-base/) */ declare const BottomNavigationAction: ExtendButtonBase<BottomNavigationActionTypeMap<{}, ButtonBaseTypeMap['defaultComponent']>>; export type BottomNavigationActionProps<RootComponent extends React.ElementType = ButtonBaseTypeMap['defaultComponent'], AdditionalProps = {}> = OverrideProps<BottomNavigationActionTypeMap<AdditionalProps, RootComponent>, RootComponent> & { component?: React.ElementType; }; export default BottomNavigationAction;