Deploy Ladill Transfer / deploy (push) Successful in 41s
Remove desktop header search, wire mobile search to the transfers and files page, refine file icons and Shared badge, and align Transfers toolbar with Files. Co-authored-by: Cursor <cursoragent@cursor.com>
18 lines
547 B
PHP
18 lines
547 B
PHP
@php
|
|
$size = $size ?? 'sm';
|
|
$classes = match ($size) {
|
|
'xs' => 'h-7 w-7 rounded-md',
|
|
default => 'h-8 w-8 rounded-lg',
|
|
};
|
|
$iconClasses = match ($size) {
|
|
'xs' => 'h-3.5 w-3.5',
|
|
default => 'h-4 w-4',
|
|
};
|
|
@endphp
|
|
<span @class([
|
|
'inline-flex shrink-0 items-center justify-center bg-gradient-to-br from-slate-50 to-indigo-50 text-indigo-500 ring-1 ring-slate-200/80',
|
|
$classes,
|
|
])>
|
|
<img src="{{ asset('images/ladill-icons/file.svg') }}" alt="" @class([$iconClasses, 'opacity-90'])>
|
|
</span>
|