Container
Live Demos HubContainer
Interactive production-grade hypermedia component for HTMXUI.
Interactive Preview
{content}
HTML Source
<!--
Component: container.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' }"
-->
<div hx-ext="reactive" hx-state="{ themeColor: \'primary\', size: \'md\', isOpen: false }" class="container mx-auto px-4 sm:px-6 lg:px-8 max-w-7xl">
{content}
</div>