hc-oss / react-multi-select-component

Lightweight (~5KB gzipped) multiple selection dropdown component
https://codesandbox.io/s/react-multi-select-example-uqtgs
MIT License
386 stars 89 forks source link

Add JSX.Element to use in label #722

Open lirompage opened 8 months ago

lirompage commented 8 months ago

Is your feature request related to a problem? Please describe. Hello, thanks for your plugin, my problem is I want to use JSX ELEMENT in Label

Describe the solution you'd like Can you improve this interface like:

interface OptionWithJSXLabel { value: string; label: string | JSX.Element; key?: string; disabled?: boolean; }

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.

lirompage commented 8 months ago

Understand, i need to use ItemRenderer...