;(function () {
/* Sparkline — 84x36 up/down sparkline. */

const Sparkline = ({ up = true, width = 84, height = 36 }) => (
  <img
    src={up ? 'superapp/icons/spark-up.svg' : 'superapp/icons/spark-down.svg'}
    width={width}
    height={height}
    alt=""
  />
);

Object.assign(window, { Sparkline });
})();
