Is there a way to get a selection dropdown with header items in options?
I know of course there is this tag:
<Dropdown.Header icon='tags' content='Filter by tag' />
But this requires the whole dropdown to have custom Dropdown Items and does not work with Semantic UI's "selection" keyword that does a lot of dropdown management for me and let me give the options over an object array ("options").
When adding/ declaring my options I would like to be able to define it as a header item. Like this:
{
key: id,
value: id,
text: name,
content: (
<span>
{name}
<Label circular>{points}</Label>
</span>
),
header: true
}
Is there something like that? I can't find anything in the documentation.