mirror of
https://github.com/NyaaStudios/nyaabooru.git
synced 2025-12-09 21:42:57 +00:00
21 lines
404 B
PHP
21 lines
404 B
PHP
<?php
|
|
|
|
namespace App\Livewire\App;
|
|
|
|
use Livewire\Component;
|
|
|
|
class Icon extends Component
|
|
{
|
|
public string $family = 'classic';
|
|
public string $variant = 'light';
|
|
public string $name = 'paw-simple';
|
|
public string $label = '';
|
|
public string $style = '';
|
|
public string $attrs = '';
|
|
public string|null $slot = null;
|
|
|
|
public function render()
|
|
{
|
|
return view('livewire.app.icon');
|
|
}
|
|
}
|