File: /home/posscale/www/printmanager/vendor/filament/filament/src/FontProviders/BunnyFontProvider.php
<?php
namespace Filament\FontProviders;
use Illuminate\Contracts\Support\Htmlable;
use Illuminate\Support\HtmlString;
class BunnyFontProvider implements Contracts\FontProvider
{
public function getHtml(string $family, ?string $url = null): Htmlable
{
$family = (string) str($family)->replace(' ', '-')->lower()->kebab();
$url ??= "https://fonts.bunny.net/css?family={$family}:400,500,600,700&display=swap";
return new HtmlString("
<link rel=\"preconnect\" href=\"https://fonts.bunny.net\">
<link href=\"{$url}\" rel=\"stylesheet\" />
");
}
}