React Select multiline labels
Is there a way to have a multiline label using react-select or to have two labels for one option?
I pass the the select component options with a value and label
I've tried inserting a line break, but the text remains on one line in the select input. I'm looking for a solution to have two lines for each option.
You could keep the n
line break and add white-space: pre-wrap
to the label:
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.