@naturacosmeticos/natds-web
Version:
A collection of components from Natura Design System for React websites and webapps
21 lines (20 loc) • 636 B
TypeScript
import * as React from 'react';
import { BottomNavigationProps } from '@material-ui/core/BottomNavigation';
export interface IBottomNavigationProps extends BottomNavigationProps {
/**
* The component used for the root node. Either a string to use a HTML element or a component.
*
* @optional
* @type React.ElementType
*/
component?: React.ElementType;
/**
* If `true`, all `BottomNavigationAction`s will show their labels.
*
* By default, only the selected `BottomNavigationAction` will show its label.
*
* @optional
* @type boolean
*/
showLabels?: boolean;
}