<?php public function toHtml(?Closure $alt = null, array $attributes = []): string
{
$attributes = array_merge([
'width' => 72,
'height' => 72,
'loading' => 'lazy',
'class' => 'twemoji',
], $attributes);
$attrs = implode(' ', array_map(
fn (string $key, string $value): string => "{$key}=\"{$value}\"",