maud-ui 0.2.0

59 headless, accessible UI components for Rust web apps — plus block templates, a live theme customiser, and shell hooks for 15 third-party widgets (Monaco, xyflow, Excalidraw, Three.js, AG Grid, Leaflet, FullCalendar, SortableJS, and more). Built on maud + htmx, styled like shadcn/ui.
Documentation
/* Separator component — visual and semantic divider */

.mui-separator {
  background: var(--mui-border);
  flex-shrink: 0;
}

/* Horizontal separator — full width, minimal height */
.mui-separator--horizontal {
  height: 1px;
  width: 100%;
  margin: 0;
}

/* Vertical separator — minimal width, stretches to fill parent */
.mui-separator--vertical {
  width: 1px;
  align-self: stretch;
  min-height: 1rem;
  display: inline-block;
}