axonyx-ui 0.0.38

Foundry CSS, JavaScript helpers, and Axonyx-native .ax components for Axonyx UI.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
page TimelineItem(time = "", title = "", tone = "")

<li class="ax-timeline__item" data-tone={tone}>
  <span class="ax-timeline__dot"></span>
  <div class="ax-timeline__content">
    <If when={time}>
      <span class="ax-timeline__time">{time}</span>
    </If>
    <strong>{title}</strong>
    <Slot />
  </div>
</li>