Deploy Ladill Hosting / deploy (push) Failing after 17s
Shared web hosting extracted from the platform monolith, with CI deploy to /var/www/ladill-hosting matching Bird/Domains/Email. Co-authored-by: Cursor <cursoragent@cursor.com>
29 lines
1.1 KiB
PHP
29 lines
1.1 KiB
PHP
<?php
|
||
|
||
namespace App\Support;
|
||
|
||
final class DomainGlobeIcon
|
||
{
|
||
public const VIEW_BOX = '0 0 14 14';
|
||
|
||
/** 14×14 globe for UI icons (inherits color via currentColor). */
|
||
public const ICON_ASSET = 'images/ladill-icons/domain.svg';
|
||
|
||
public static function paths(): string
|
||
{
|
||
return '<path d="M7 13.5C10.5899 13.5 13.5 10.5899 13.5 7C13.5 3.41015 10.5899 0.5 7 0.5C3.41015 0.5 0.5 3.41015 0.5 7C0.5 10.5899 3.41015 13.5 7 13.5Z" stroke-linecap="round" stroke-linejoin="round"/>'
|
||
.'<path d="M0.5 7H13.5" stroke-linecap="round" stroke-linejoin="round"/>'
|
||
.'<path d="M9.5 7C9.3772 9.37699 8.50168 11.6533 7 13.5C5.49832 11.6533 4.6228 9.37699 4.5 7C4.6228 4.62301 5.49832 2.34665 7 0.5C8.50168 2.34665 9.3772 4.62301 9.5 7V7Z" stroke-linecap="round" stroke-linejoin="round"/>';
|
||
}
|
||
|
||
public static function svg(string $class = 'h-5 w-5'): string
|
||
{
|
||
return sprintf(
|
||
'<svg class="%s" viewBox="%s" fill="none" stroke="currentColor" stroke-width="1" aria-hidden="true">%s</svg>',
|
||
e($class),
|
||
self::VIEW_BOX,
|
||
self::paths()
|
||
);
|
||
}
|
||
}
|