
| Current Path : /var/www/html/konvbav/vendor/twbs/bootstrap/site/src/components/header/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/konvbav/vendor/twbs/bootstrap/site/src/components/header/LinkItem.astro |
---
interface Props {
active?: boolean
class?: string
href: string
rel?: HTMLAnchorElement['rel']
target?: HTMLAnchorElement['target']
track?: boolean
}
const { active, class: className, track, ...props } = Astro.props
const content = await Astro.slots.render('default')
---
<li class="nav-item col-6 col-lg-auto">
<a
aria-current={active ? true : undefined}
class:list={['nav-link py-2 px-0 px-lg-2', className, { active }]}
{...props}
>
<slot />
</a>
</li>