15 lines
439 B
PHP
15 lines
439 B
PHP
@props(['variant' => 'default'])
|
|
|
|
@php
|
|
$map = [
|
|
'default' => 'bg-inset text-ink-2',
|
|
'warning' => 'bg-warning/10 text-warning',
|
|
'accent' => 'bg-accent/10 text-accent',
|
|
];
|
|
$classes = $map[$variant] ?? $map['default'];
|
|
@endphp
|
|
|
|
<span {{ $attributes->merge(['class' => 'font-mono text-[10.5px] font-semibold leading-none rounded-full px-[7px] py-[3px] tabular-nums '.$classes]) }}>
|
|
{{ $slot }}
|
|
</span>
|