I have both positive and negative numbers and I would like to label my feature layer using either an up or down arrow. I am able to add this in the popup (see screenshot below) with an svg image, but this does not port over to the Arcade expression for labels.
Any idea if this is possible with labels?


Code snippet used for the popup:
const upArrow = '<svg width="16" height="16" ><polygon points="14.14 7.07 7.07 0 0 7.07 4.07 7.07 4.07 16 10.07 16 10.07 7.07 14.14 7.07" /></svg>';
const downArrow = '<svg width="16" height="16"><polygon points="0 8.93 7.07 16 14.14 8.93 10.07 8.93 10.07 0 4.07 0 4.07 8.93 0 8.93" /></svg>';
const diff =
Math.round(feature.graphic.attributes[comparison_year_field]) -
Math.round(feature.graphic.attributes[reference_year_field]);
const arrow = diff > 0 ? upArrow : downArrow;