You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
356 B
16 lines
356 B
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>; |
|
};
|
|
|