Gauge

Gauge visualization for numeric values.

Example

// 
// ScriptWidget 
// https://xnu.app/scriptwidget
// 
// Usage for component guage
// 

$render(
  <vstack frame="max">
    <gauge 
      type="system"
      value="0.6"
      text="hello"
      style="circular" // default
      >
    </gauge>
  </vstack>
);