import PropTypes from 'prop-types';
import { length } from 'stringz';
export const CharacterCounter = ({ text, max }) => {
  const diff = max - length(text);
  if (diff < 0) {
    return {diff};
  }
  return {diff};
};
CharacterCounter.propTypes = {
  text: PropTypes.string.isRequired,
  max: PropTypes.number.isRequired,
};