Breadcrumb
Live Demos HubBreadcrumb
Interactive production-grade hypermedia component for HTMXUI.
Interactive Preview
HTML Source
<!--
Component: breadcrumb.html
Configurable State: themeColor ('primary'|'secondary'|'destructive'), size ('sm'|'md'|'lg'), isOpen (boolean)
Usage: Bind styles dynamically using hx-class="{ 'bg-primary': themeColor === 'primary' }" or hx-style="{ width: size === 'lg' ? '100%' : 'auto' }"
-->
<nav hx-ext="reactive" hx-state="{ themeColor: \'primary\', size: \'md\', isOpen: false }" class="flex text-sm text-muted-foreground" aria-label="Breadcrumb">
<ol class="inline-flex items-center space-x-1 md:space-x-3">
{items} <!-- <li><a href="#" class="hover:text-foreground">Home</a></li> -->
</ol>
</nav>