When using EditAction in an ActionGroup, how can the icon be removed?

Hi,

I have several EditActions in an ActionGroup and can't remove the icons. Can anyone advise on how to remove the icons?

Code:

ActionGroup::make([
    EditAction::make('edit1')->icon('')->label('One'),
    EditAction::make('edit2')->icon(null)->label('Two'),
    EditAction::make('edit3')->icon('name-of-icon-that-does-not-exist')->label('Three'),
]),


Se attached image for output.
image.png
Solution
Did you do this?

Actions\ActionGroup::make([
    Actions\EditAction::make('edit1')
        ->groupedIcon(null),
    ...
])
Was this page helpful?