react-multi-select-component icon indicating copy to clipboard operation
react-multi-select-component copied to clipboard

Background color of dropdown

Open s12prashant opened this issue 11 months ago • 3 comments

I want to know how to change the color of the backgound that present inisde the multiselect , is there any way to do it ?

s12prashant avatar Mar 01 '25 12:03 s12prashant

const valueRenderer = (selected: Option[], options: Option[]) => { return ( <div className={"d-flex" }style={{ color: '#1f1f1f', fontSize: '14px' }}> {selected.map((option) => ( <span key={option.value} style={{ marginRight: '5px' }} className={ "status-" + option.value }> {option.label} </span> ))} </div> ); };

eobruno avatar Apr 06 '25 14:04 eobruno

Image i want to know how can i able to do whole background color change and also border color change for that field

s12prashant avatar Apr 11 '25 20:04 s12prashant

Image

Image

if i use this it will give me this can you suggest me how can i able to do like this

Image

s12prashant avatar Apr 11 '25 20:04 s12prashant