mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-02-23 11:03:50 -05:00
17 lines
356 B
TypeScript
17 lines
356 B
TypeScript
|
import { length } from 'stringz';
|
||
|
|
||
|
export const CharacterCounter: React.FC<{
|
||
|
text: string;
|
||
|
max: number;
|
||
|
}> = ({ 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>;
|
||
|
};
|