mirror of
https://github.com/pelican-dev/panel.git
synced 2025-09-25 09:08:00 +02:00
14 lines
277 B
PHP
14 lines
277 B
PHP
<?php
|
|
|
|
namespace App\Filament\Server\Components;
|
|
|
|
use Filament\Support\Concerns\CanBeCopied;
|
|
use Filament\Widgets\StatsOverviewWidget\Stat;
|
|
|
|
class SmallStatBlock extends Stat
|
|
{
|
|
use CanBeCopied;
|
|
|
|
protected string $view = 'filament.components.server-small-data-block';
|
|
}
|