You've already forked Atomcms-edit
22 lines
866 B
PHP
Executable File
22 lines
866 B
PHP
Executable File
|
|
@props(['icon' => '', 'classes' => ''])
|
|
|
|
<div class="w-full flex flex-col gap-y-4 rounded overflow-hidden pb-3 shadow-sm {{ $classes }}" style="background-color: var(--color-surface); color: var(--color-text);">
|
|
<div class="flex gap-x-2 border-b p-3" style="border-color: color-mix(in srgb, var(--color-primary) 30%, transparent)">
|
|
@if (empty($icon) === false)
|
|
<div class="max-w-[50px] max-h-[50px] min-w-[50px] min-h-[50px] rounded-full relative flex items-center justify-center {{ $icon }}"></div>
|
|
@endif
|
|
<div class="flex flex-col justify-center text-sm">
|
|
<p class="font-semibold" style="color: var(--color-text)">{{ $title }}</p>
|
|
|
|
@if(isset($underTitle))
|
|
<p style="color: var(--color-text-muted)">{{ $underTitle }}</p>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
|
|
<section class="h-full flex flex-col px-3" style="color: var(--color-text)">
|
|
{{ $slot }}
|
|
</section>
|
|
</div>
|