Accordion Plus and Minus Icons

Hi Cuba Team,

The Plus and Minus Icon wood be good for Accordion Tabs to note down open and closed states like below image.

image

I implemented this using below piece of code.

@Subscribe("staticAccordion")
    public void onStaticAccordionSelectedTabChange(Accordion.SelectedTabChangeEvent event) {
        event.getSource().getTabs().forEach(tab -> {
            if(tab.equals(event.getSelectedTab()))
                tab.setIconFromSet(CubaIcon.MINUS_CIRCLE);
            else
                tab.setIconFromSet(CubaIcon.PLUS_CIRCLE);
        });
    }

Thanks,
Hari