58 lines
1.4 KiB
JavaScript
58 lines
1.4 KiB
JavaScript
import _extends from "@babel/runtime/helpers/extends";
|
|
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
|
|
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import classNames from 'classnames';
|
|
import withStyles from '../styles/withStyles';
|
|
import { capitalize } from '../utils/helpers';
|
|
export const styles = theme => ({
|
|
root: {
|
|
position: 'absolute',
|
|
height: 2,
|
|
bottom: 0,
|
|
width: '100%',
|
|
transition: theme.transitions.create(),
|
|
willChange: 'left, width'
|
|
},
|
|
colorPrimary: {
|
|
backgroundColor: theme.palette.primary.main
|
|
},
|
|
colorSecondary: {
|
|
backgroundColor: theme.palette.secondary.main
|
|
}
|
|
});
|
|
/**
|
|
* @ignore - internal component.
|
|
*/
|
|
|
|
function TabIndicator(props) {
|
|
const {
|
|
classes,
|
|
className,
|
|
color
|
|
} = props,
|
|
other = _objectWithoutProperties(props, ["classes", "className", "color"]);
|
|
|
|
return React.createElement("span", _extends({
|
|
className: classNames(classes.root, classes[`color${capitalize(color)}`], className)
|
|
}, other));
|
|
}
|
|
|
|
TabIndicator.propTypes = process.env.NODE_ENV !== "production" ? {
|
|
/**
|
|
* Useful to extend the style applied to components.
|
|
*/
|
|
classes: PropTypes.object.isRequired,
|
|
|
|
/**
|
|
* @ignore
|
|
*/
|
|
className: PropTypes.string,
|
|
|
|
/**
|
|
* @ignore
|
|
* The color of the tab indicator.
|
|
*/
|
|
color: PropTypes.oneOf(['primary', 'secondary'])
|
|
} : {};
|
|
export default withStyles(styles)(TabIndicator); |