Remove Underline in <s-link> Preact

I am using the latest Preact components for my Checkout UI Extension and I cannot find out how to remove a underline from a link component?

 <s-stack direction="inline" gap="small">
    <s-heading>Closed Orders</s-heading>
    <s-link onClick={toggleInvoicesAccordion} tone="neutral">
      {invoicesAccordionOpen ? '▼' : '▲'}
    </s-link>
  </s-stack>

I set the tone to neutral and it still showed the underline, is there anything else I can try?