Use same icon for different state in BadgeColumn

I need to use same icon class for different value, how to make it possible?
BadgeColumn::make('status')
  ->icons([
    'heroicon-o-clock' => 'Pending',
    'heroicon-o-clock' => 'Awaiting Confirmation',
  ])

The structure above however looks impossible (and didn't work) as those values share the same key.

I tried something like this but still didn't work.
BadgeColumn::make('status')
  ->icons([
    'heroicon-s-clock' => ['Pending','Awaiting Confirmation'],
  ])


Any way to achieve that?
Was this page helpful?