It is not something supported by CRED, though you could add it using a 3rd-party JavaScript library easily enough.
You would add a text input to the form and then initialise the library for that element. The precise steps would depend very much on the library you choose. I expect if you google you'll find many. Here's the first one I found that looks a good candidate, with detailed instructions: hidden link
I have found the same plus minus solution 🙂 and succesfully placed it on my CRED form followed the steps shown in document. But how can I connect it with CRED field?
The cred_field shortcode will wrap the input in a div so you will need to do some DOM manipulation to match the format shown in the documentation, with button input button before you initialise the counter library.
If I were doing this I would add the HTML for both buttons to my form immediately after the cred_field shortcode, then move those buttons to the required positions in the DOM inside the wrapper div, using something like jQuery's insertAfter()
(hidden link).
And you will probably want to set an initial value for the field in the cred_field shortcode.