@ForrestLin You can use CSS to fit your use case, perhaps something like: https://codepen.io/geospatialem/pen/gONOLVG
<style>
calcite-button[href] {
--calcite-color-brand: var(--calcite-color-text-link);
text-decoration: underline solid var(--calcite-color-text-link);
}
</style>
<calcite-button appearance="transparent" href="https://developers.arcgis.com/calcite-design-system/components/button">Button with a link</calcite-button>
<calcite-button>Button with no link</calcite-button>
@ForrestLin You can use CSS to fit your use case, perhaps something like: https://codepen.io/geospatialem/pen/gONOLVG
<style>
calcite-button[href] {
--calcite-color-brand: var(--calcite-color-text-link);
text-decoration: underline solid var(--calcite-color-text-link);
}
</style>
<calcite-button appearance="transparent" href="https://developers.arcgis.com/calcite-design-system/components/button">Button with a link</calcite-button>
<calcite-button>Button with no link</calcite-button>
Thank you!