dealhub/resources/views/components/icon-square.blade.php

15 lines
463 B
PHP

@props(['variant' => 'ghost'])
@php
$variants = [
'blue' => "bg-blue-100 text-blue-700",
'red' => 'bg-red-100 text-red-700',
'purple' => "bg-purple-100 text-purple-700",
'pink' => "bg-pink-100 text-pink-700",
'green' => "bg-green-100 text-green-700",
'ghost' => 'bg-gray-100 text-gray-900'
]
@endphp
<div {{$attributes->merge(["class" => "$variants[$variant] p-4 w-fit rounded-xl"])}}>
{{$slot}}
</div>