| 123456789101112131415161718192021 | 
							- @props([
 -     'preview' => false,
 - ])
 - 
 - <div
 -     @class([
 -         'doc-template-container flex justify-center',
 -     ])
 - >
 -     <div class="max-w-full overflow-x-auto shadow-xl ring-1 ring-gray-950/5 dark:ring-white/10">
 -         <div
 -             @class([
 -                 'doc-template-paper bg-[#ffffff] overflow-y-auto',
 -                 'w-[51.25rem] h-[64rem]' => ! $preview,
 -                 'w-[48rem] min-h-[61.75rem] preview' => $preview,
 -             ])
 -         >
 -             {{ $slot }}
 -         </div>
 -     </div>
 - </div>
 
 
  |