It would be great to add a labelClassName parameter to the DefaultGroup component to allow modifying the CSS style of the group label. Currently, it is possible to use labelClassName with nodes, but not with groups.
interface DefaultNodeProps {
...
/** Additional classes to add to the label */
labelClassName?: string;
...