14 lines
454 B
PHP
14 lines
454 B
PHP
<?php
|
|
/**
|
|
* @var \App\View\AppView $this
|
|
* @var string|null $class
|
|
* @var int|null $size
|
|
*/
|
|
|
|
$size = $size ?? 6;
|
|
$class = $class ?? '';
|
|
?>
|
|
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon" class="size-<?= $size ?? 6; ?> <?= $class ?? ''; ?>">
|
|
<path stroke-linecap="round" stroke-linejoin="round" d="m19.5 4.5-15 15m0 0h11.25m-11.25 0V8.25"/>
|
|
</svg>
|