19 lines
470 B
PHP
19 lines
470 B
PHP
@props([
|
|
'variant' => 'default',
|
|
])
|
|
|
|
@php
|
|
$base = 'rounded-xl p-5 border';
|
|
|
|
$variants = [
|
|
'default' => 'bg-bg-soft border-line',
|
|
'gradient-primary' => 'bg-primary-soft border-primary-soft',
|
|
'gradient-violet' => 'bg-violet-soft border-violet-soft',
|
|
'tint' => 'bg-bg-tint border-line',
|
|
];
|
|
@endphp
|
|
|
|
<div {{ $attributes->merge(['class' => "{$base} {$variants[$variant]}"]) }}>
|
|
{{ $slot }}
|
|
</div>
|