GitHub ↗

List

Interactive production-grade hypermedia component for HTMXUI.

Interactive Preview

    {items}

HTML Source

<!-- 
  Component: list.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' }"
-->
<ul hx-ext="reactive" hx-state="{ themeColor: \'primary\', size: \'md\', isOpen: false }"  class="my-6 ml-6 list-disc [&>li]:mt-2">
  {items}
</ul>