Line

Fixed-length line segment.

Example

//
// ScriptWidget
// https://xnu.app/scriptwidget
//
// component: line
//

$render(
  <vstack frame="max" padding="12" spacing="8">
    <line length="120" thickness="2" color="#94a3b8" />
    <hstack spacing="8">
      <line axis="vertical" length="24" thickness="2" color="#f59e0b" />
      <text font="caption">Vertical line</text>
    </hstack>
  </vstack>
);