@material-ui/lab
Version:
Material-UI Lab - Incubator for Material-UI React components.
52 lines (48 loc) • 1.61 kB
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
import * as React from 'react';
import PropTypes from 'prop-types';
import clsx from 'clsx';
import { withStyles } from '@material-ui/core/styles';
export const styles = () => ({
/* Styles applied to the root element. */
root: {
display: 'flex',
flexDirection: 'column',
flex: 0,
alignItems: 'center'
}
});
const TimelineSeparator = /*#__PURE__*/React.forwardRef(function TimelineSeparator(props, ref) {
const {
classes,
className
} = props,
other = _objectWithoutPropertiesLoose(props, ["classes", "className"]);
return /*#__PURE__*/React.createElement("div", _extends({
className: clsx(classes.root, className),
ref: ref
}, other));
});
process.env.NODE_ENV !== "production" ? TimelineSeparator.propTypes = {
// ----------------------------- Warning --------------------------------
// | These PropTypes are generated from the TypeScript type definitions |
// | To update them edit the d.ts file and run "yarn proptypes" |
// ----------------------------------------------------------------------
/**
* The content of the component.
*/
children: PropTypes.node,
/**
* Override or extend the styles applied to the component.
* See [CSS API](#css) below for more details.
*/
classes: PropTypes.object,
/**
* @ignore
*/
className: PropTypes.string
} : void 0;
export default withStyles(styles, {
name: 'MuiTimelineSeparator'
})(TimelineSeparator);