Heart shape.
import { Heart } from "pencil.js";
const position = [100, 200];
const radius = 2;
const options = {
fill: "red",
stroke: "teal"
};
const heart = new Heart(position, radius, options);
Inherit from ComponentOptions.
Heart have no specific options.