public function deleteAction(): Action
{
return Action::make('delete')
->label('')
->size('lg')
->iconButton()
->icon('heroicon-o-trash')
->tooltip('Delete statement')
->requiresConfirmation()
->action(fn (array $arguments) => $this->deleteStatement($arguments))
}