I am currently utilizing Nebular in a project, where multiple dropdowns are being used as shown below:
<nb-select fullWidth placeholder="Office" formControlName="office">
<nb-option value="Office_A"&bt;Office A</nb-option>
</nb-select>
Here is an example of how it looks:
https://i.sstatic.net/1fdCz.png
I am looking to add a close (x) icon next to the down chevron in the dropdown, similar to the image below:
Additionally, I would like to incorporate an onClick event for that particular icon.
Is there any possibility to achieve this functionality?
Edit: I am open to exploring workarounds even if they are not features directly provided by Nebular itself.