Circle

Circle shape.

Example

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

$render(
  <hstack frame="max">
    <circle frame="40,40" color="blue"></circle>
    <circle frame="40,40" color="blue" stroke="10"></circle>
    <circle frame="40,40" color="blue" stroke="10" trim="0.2"></circle>
    <circle frame="40,40" color="blue" stroke="10" trim="0.2" rotation="90"></circle>
  </hstack>
);