castopod/app/Views/Components/Forms/Helper.php

23 lines
392 B
PHP
Raw Normal View History

<?php
declare(strict_types=1);
namespace App\Views\Components\Forms;
class Helper extends FormComponent
{
/**
* @var "default"|"error"
*/
protected string $type = 'default';
public function render(): string
{
$class = 'text-gray-600';
return <<<HTML
<small class="{$class} {$this->class}">{$this->slot}</small>
HTML;
}
}