15 lines
342 B
PHP
15 lines
342 B
PHP
@props([
|
|
'columnSpan' => [],
|
|
'columnStart' => [],
|
|
'height' => null,
|
|
])
|
|
|
|
<div
|
|
{{
|
|
($attributes ?? new \Illuminate\View\ComponentAttributeBag)
|
|
->gridColumn($columnSpan, $columnStart)
|
|
->class(['fi-section fi-loading-section'])
|
|
->style(['height: ' . ($height ?? '8rem')])
|
|
}}
|
|
></div>
|