extraAttributes on Bulk Actions not working correctly?

I'm trying to add extraAttributes to a Bulk Action but it is not rendered. It is working on my Single Actions though

->bulkActions([
    Tables\Actions\BulkAction::make('groupCalculation')
        ->icon('heroicon-o-calculator')
        ->action(function (Collection $records) {
            // Doing something...
        })
        ->extraAttributes(['foobar' => 'bar'])
])

Is it missing in the view or is it me using it incorrectly?
Was this page helpful?