mirror of
https://github.com/glitch-soc/mastodon.git
synced 2024-11-26 18:14:15 -05:00
6936e5aa69
Co-authored-by: Claire <claire.github-309c@sitedethib.com>
19 lines
441 B
JavaScript
19 lines
441 B
JavaScript
import PropTypes from 'prop-types';
|
|
|
|
import { length } from 'stringz';
|
|
|
|
export const CharacterCounter = ({ text, max }) => {
|
|
const diff = max - length(text);
|
|
|
|
if (diff < 0) {
|
|
return <span className='character-counter character-counter--over'>{diff}</span>;
|
|
}
|
|
|
|
return <span className='character-counter'>{diff}</span>;
|
|
};
|
|
|
|
CharacterCounter.propTypes = {
|
|
text: PropTypes.string.isRequired,
|
|
max: PropTypes.number.isRequired,
|
|
};
|