2024-05-13 18:55:34 -04:00
|
|
|
@props(['id' => null, 'maxWidth' => null])
|
|
|
|
|
|
|
|
<x-modal :id="$id" :maxWidth="$maxWidth" {{ $attributes }}>
|
|
|
|
<div class="px-6 py-4">
|
2024-06-23 10:50:52 -04:00
|
|
|
<div class="text-lg font-medium text-gray-900 dark:text-gray-100">
|
2024-05-13 18:55:34 -04:00
|
|
|
{{ $title }}
|
|
|
|
</div>
|
|
|
|
|
2024-06-23 10:50:52 -04:00
|
|
|
<div class="mt-4 text-sm text-gray-600 dark:text-gray-400">
|
2024-05-13 18:55:34 -04:00
|
|
|
{{ $content }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2024-06-23 10:50:52 -04:00
|
|
|
<div class="flex flex-row justify-end px-6 py-4 bg-gray-100 dark:bg-gray-800 text-end">
|
2024-05-13 18:55:34 -04:00
|
|
|
{{ $footer }}
|
|
|
|
</div>
|
|
|
|
</x-modal>
|