21 lines
541 B
PHP
21 lines
541 B
PHP
@props(['size' => 'default'])
|
|
|
|
@if(file_exists(public_path('images/logo.svg')))
|
|
<img
|
|
src="{{ asset('images/logo.svg') }}"
|
|
alt="{{ __('Libra Law Firm') }}"
|
|
@class([
|
|
'h-8' => $size === 'small',
|
|
'h-12' => $size === 'default',
|
|
'h-16' => $size === 'large',
|
|
])
|
|
/>
|
|
@else
|
|
<span @class([
|
|
'font-bold text-gold',
|
|
'text-lg' => $size === 'small',
|
|
'text-2xl' => $size === 'default',
|
|
'text-3xl' => $size === 'large',
|
|
])>Libra</span>
|
|
@endif
|