mirror of
https://github.com/NyaaStudios/nyaabooru.git
synced 2025-12-10 05:42:58 +00:00
17 lines
279 B
PHP
17 lines
279 B
PHP
<?php
|
|
|
|
namespace App\Livewire\App;
|
|
|
|
use Livewire\Component;
|
|
|
|
class DataCard extends Component
|
|
{
|
|
public string $icon = 'question-mark';
|
|
public string $title = '';
|
|
public int $value = 0;
|
|
|
|
public function render()
|
|
{
|
|
return view('livewire.app.data-card');
|
|
}
|
|
}
|