1
2
3
4
5
6
7
8
9
10
11
12
13
import { sparklineSVG } from "https://esm.town/v/stevekrouse/sparklineSVG";
export let sparklineEx2 = function (req, res) {
res.set("content-type", "image/svg+xml");
res.end(sparklineSVG({
strokeWidth: 4,
data: [1, 2, 3, 4, 5, 5, 6, 7, 7, 7, 10, 2],
height: "100%",
width: "100%",
fill: "#dcfce7",
stroke: "#bbf7d0",
}));
};