2024-08-18 12:30:53 -07:00
|
|
|
{{-- IMPORTANT!!! Make sure there is no newline at the end of this file, or it will break the loaders for the tables --}}
|
|
|
|
|
2024-08-18 07:47:45 -07:00
|
|
|
@props([
|
|
|
|
'type' => '',
|
2024-08-18 12:30:53 -07:00
|
|
|
'class' => false,
|
|
|
|
'style' => false,
|
|
|
|
'id' => false,
|
|
|
|
'title' => false,
|
2024-08-18 07:47:45 -07:00
|
|
|
])
|
2024-08-18 12:30:53 -07:00
|
|
|
<i {{ $attributes->merge(['class' => Icon::icon($type).' '.$class]) }} {{ isset($style) ? $attributes->merge(['style' => $style]): '' }} {{ isset($title) ? $attributes->merge(['title' => $title]): '' }} aria-hidden="true"></i>
|