Getting started

Importing the library:

import { Badge } from "badgekit";

Create a badge:

let b = new Badge();

Add the layers

b.addRing({ stroke: "#6699cc", r: 0.9 });

And then display it:

display(b.show());