All files / src/LabelDivider LabelDivider.js

100% Statements 6/6
100% Branches 0/0
100% Functions 2/2
100% Lines 5/5

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44              12x                                           12x 1x 1x         12x              
import React from 'react';
import * as R from 'ramda';
import PropTypes from 'prop-types';
import cx from 'classnames';
import { makeStyles } from '@material-ui/core/styles';
import Typography from '@material-ui/core/Typography';
 
const useStyles = makeStyles(theme => ({
  hr: {
    display: 'flex',
    color: R.pipe(
      R.prop('color'),
      R.ifElse(R.isNil, R.always(theme.palette.grey[300]), R.identity),
    ),
    alignItems: 'center',
    textAlign: 'center',
    '&::before, &::after': {
      content: 'close-quote',
      flex: 1,
      borderTop: '.0625em solid',
      margin: '0.5em',
    },
  },
  margin: {
    marginTop: theme.spacing(1.25),
    marginBottom: theme.spacing(1.25),
  },
}));
 
export const LabelDivider = ({ label, color, withMargin }) => {
  const classes = useStyles({ color });
  return (
    <Typography className={cx(classes.hr, { [classes.margin]: withMargin })}>{label}</Typography>
  );
};
 
LabelDivider.propTypes = {
  label: PropTypes.oneOfType([PropTypes.string, PropTypes.element]),
  color: PropTypes.string,
  withMargin: PropTypes.bool,
};
 
export default LabelDivider;