function App() {
return bf.Bluefish(
bf.Background(
{ padding: 20 },
bf.StackV(
{ spacing: spacing },
bf.Circle({
name: "mercury",
r: 15,
fill: "#EBE3CF",
"stroke-width": 3,
stroke: "black"
}),
bf.Circle({
r: 56,
fill: "#DC933C",
"stroke-width": 3,
stroke: "black"
}),
bf.Circle({
r: 38,
fill: "#179DD7",
"stroke-width": 3,
stroke: "black",
name: "earth"
}),
bf.Circle({
r: 21,
fill: "#F1CF8E",
"stroke-width": 3,
stroke: "black"
})
)
),
bf.Align(
{ alignment: "centerY" },
bf.Text({ name: "label" }, "Earth"),
bf.Ref({ select: "earth" })
),
bf.Distribute(
{ direction: "horizontal", spacing: 50 },
bf.Ref({ select: "label" }),
bf.Ref({ select: "earth" })
),
bf.Arrow(bf.Ref({ select: "label" }), bf.Ref({ select: "earth" }))
);
}