14 lines
335 B
PHP
14 lines
335 B
PHP
|
@props(['light' => null])
|
||
|
|
||
|
<nav
|
||
|
aria-label="breadcrumb"
|
||
|
{{ $attributes->class(merge(['flex']))->merge($attributes->whereDoesntStartWith('class')->getAttributes()) }}
|
||
|
>
|
||
|
<ol @class([
|
||
|
'flex items-center text-primary dark:text-slate-300',
|
||
|
'text-white/90' => $light,
|
||
|
])>
|
||
|
{{ $slot }}
|
||
|
</ol>
|
||
|
</nav>
|