How to change the icon of createOptionForm icon on select field ?
User Text instead of icon like Add new candidate rather than + icon

->createOptionAction(
function (Action $action) {
$action->icon(null);
$action->color('primary');
$action->label('Create Candidate');
$action->link();
}
)