File "confirmation-modal.blade.php"

Full Path: /home/fundopuh/trader.fxex.org/resources/views/vendor/jetstream/components/confirmation-modal.blade.php
File size: 1.13 KB
MIME-type: text/plain
Charset: utf-8

@props(['id' => null, 'maxWidth' => null])

<x-jet-modal :id="$id" :maxWidth="$maxWidth" {{ $attributes }}>
    <div class="px-4 pt-5 pb-4 bg-dark sm:p-6 sm:pb-4">
        <div class="sm:flex sm:items-start ">
            <div
                class="flex items-center justify-center flex-shrink-0 w-12 h-12 mx-auto bg-red-100 rounded-full sm:mx-0 sm:h-10 sm:w-10">
                <svg class="w-6 h-6 text-red-600" stroke="currentColor" fill="none" viewBox="0 0 24 24">
                    <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
                        d="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z" />
                </svg>
            </div>

            <div class="mt-3 text-center sm:mt-0 sm:ml-4 sm:text-left ">
                <h3 class="text-lg ">
                    {{ $title }}
                </h3>

                <div class="mt-2 ">
                    {{ $content }}
                </div>
            </div>
        </div>
    </div>

    <div class="px-6 py-4 text-right ">
        {{ $footer }}
    </div>
</x-jet-modal>