How to change the icon of createOptionForm icon on select field ?

User Text instead of icon like Add new candidate rather than + icon
Screenshot_2024-06-01_at_11.24.01.png
Solution
Solved:
->createOptionAction(
    function (Action $action) {
        $action->icon(null);
        $action->color('primary');
        $action->label('Create Candidate');
        $action->link();
    }
)
Was this page helpful?