@props([
'disabled' => false,
'unimportant' => false,
'tight' => false,
])
class([
'border',
'truncate',
'md:px-4 px-2 py-1 md:py-2' => !$tight,
'p-2' => $tight,
'bg-gray-200' => $disabled,
'border-gray-200' => !$disabled,
'text-xs md:text-sm' => $unimportant,
]) }}>
{{ $slot }}
|