hc-oss / react-multi-select-component

Lightweight (~5KB gzipped) multiple selection dropdown component

Home Page:https://codesandbox.io/s/react-multi-select-example-uqtgs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

can we remove checkbox in dropdown, how we can remove it..??

divyansh1995 opened this issue · comments

Is your feature request related to a problem? Please describe.
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

Describe the solution you'd like
A clear and concise description of what you want to happen.

Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.

Additional context
Add any other context or screenshots about the feature request here.

@divyansh1995 you should be easily able to do this

here's sandbox https://codesandbox.io/s/youthful-ully-wocyks?file=/src/styles.css

.rmsc .item-renderer input[type="checkbox"] {
  display: none;
}

okay, thank you..