Increase the font size of a badge TextColumn

Is there a way to increase the font size of the badge TextColumn:

Tables\Columns\TextColumn::make($key)
    ->searchable()->default('-')
    ->badge()
    ->color(fn (string $state): array => $colorSelector($state, $key))
    ->sortable();


I want the badge to be text-xl
Was this page helpful?