Khan / react-multi-select

A multiple select component for React
MIT License
183 stars 97 forks source link

How to hide the check box i need only dropdown without checkbox #76

Open vc-akashkadia opened 4 years ago

kennyt6 commented 4 years ago

@vc-akashkadia What I did was create a style.css file and used this code:

.item-renderer > input {
  visibility: hidden;
}

.item-renderer > span {
  margin-left: -10px;
}