Archived
1
0
This repository has been archived on 2024-05-04. You can view files and clone it, but cannot push or open issues or pull requests.
cyca/resources/views/partials/folder.blade.php
2022-01-12 00:35:37 +01:00

8 lines
446 B
PHP
Executable File

<div class="inline-block rounded dark:bg-gray-800 px-2 py-1">
<div class="flex items-center space-x-1">
<svg fill="currentColor" width="16" height="16" class="{{ $folder['iconColor'] }}">
<use xlink:href="{{ asset('images/icons.svg') }}#{{ $folder['icon'] }}" />
</svg>
<span>{{ (!empty($folder['type']) && $folder['type'] !== 'folder') ? __($folder['title']) : $folder['title'] }}</span>
</div>
</div>