({ textLength }: TextCounterProps)
| 14 | } |
| 15 | |
| 16 | function TextCounter({ textLength }: TextCounterProps) { |
| 17 | return ( |
| 18 | <Text position="absolute" bottom="2" right="2" fontSize="sm" color={getTextColor(textLength)}> |
| 19 | {textLength}/{MAX_CHARACTERS} |
| 20 | </Text> |
| 21 | ) |
| 22 | } |
| 23 | |
| 24 | export default TextCounter |
nothing calls this directly
no test coverage detected