Instead of the default red cross icon I just want the column to be blank. ```php class Note extends Model { protected $casts = [ 'is_important' => 'boolean', ]; } ``` ```php Tables\Columns\IconColumn::make('is_important') ->icon(fn (string $state): string => match ($state) { '1' => 'heroicon-o-exclamation-circle', '' => '', }) ```