mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-14 17:44:17 -08:00
a77dcad336
Signed-off-by: snipe <snipe@snipe.net>
10 lines
466 B
PHP
10 lines
466 B
PHP
{{-- IMPORTANT!!! Make sure there is no newline at the end of this file, or it will break the loaders for the tables --}}
|
|
|
|
@props([
|
|
'type' => '',
|
|
'class' => false,
|
|
'style' => false,
|
|
'id' => false,
|
|
'title' => false,
|
|
])
|
|
<i {{ $attributes->merge(['class' => Icon::icon($type).' '.$class]) }} {{ isset($style) ? $attributes->merge(['style' => $style]): '' }} {{ isset($title) ? $attributes->merge(['title' => $title]): '' }} aria-hidden="true"></i> |