14 lines
651 B
PHP
14 lines
651 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="m15 11.25 1.5 1.5.75-.75V8.758l2.276-.61a3 3 0 1 0-3.675-3.675l-.61 2.277H12l-.75.75 1.5 1.5M15 11.25l-8.47 8.47c-.34.34-.8.53-1.28.53s-.94.19-1.28.53l-.97.97-.75-.75.97-.97c.34-.34.53-.8.53-1.28s.19-.94.53-1.28L12.75 9M15 11.25 12.75 9"/>
|
|
</svg>
|