Upgrade webawesome framework
Some checks failed
Docker / build (push) Has been cancelled

This commit is contained in:
yuriko 🦊 2025-06-30 20:18:30 -04:00
parent 13307bc7f4
commit e7b31a716c
Signed by: jaiden
SSH key fingerprint: SHA256:f8tvveBoXBrKZIQDWLLcpQrKbATUCGg98x2N4YzkDM8
19 changed files with 63 additions and 51 deletions

17
app/Livewire/App/Icon.php Normal file
View file

@ -0,0 +1,17 @@
<?php
namespace App\Livewire\App;
use Livewire\Component;
class Icon extends Component
{
public string $name = 'paw-simple';
public string $attrs = '';
public string|null $slot = null;
public function render()
{
return view('livewire.app.icon');
}
}