UNPKG

@activelylearn/material-ui

Version:

Material-UI's workspace package

59 lines (50 loc) 1.32 kB
import React from 'react'; import PropTypes from 'prop-types'; import classNames from 'classnames'; import withStyles from '../styles/withStyles'; const styles = { root: { display: 'table-footer-group', }, }; class TableFooter extends React.Component { getChildContext() { // eslint-disable-line class-methods-use-this return { table: { footer: true, }, }; } render() { const { classes, className, component: Component, ...other } = this.props; return <Component className={classNames(classes.root, className)} {...other} />; } } TableFooter.propTypes = { /** * The content of the component, normally `TableRow`. */ children: PropTypes.node, /** * Override or extend the styles applied to the component. * See [CSS API](#css-api) below for more details. */ classes: PropTypes.object.isRequired, /** * @ignore */ className: PropTypes.string, /** * The component used for the root node. * Either a string to use a DOM element or a component. */ component: PropTypes.oneOfType([PropTypes.string, PropTypes.func]), }; TableFooter.defaultProps = { component: 'tfoot', }; TableFooter.childContextTypes = { table: PropTypes.object, }; export default withStyles(styles, { name: 'MuiTableFooter' })(TableFooter);