import { Rect, version as fabricVersion } from "fabric";
import { renderToStaticMarkup } from "react-dom/server";
export function ToolchainProbe() {
return ;
}
export function renderToolchainProbe() {
const reactMarkup = renderToStaticMarkup();
const fabricSvg = new Rect({
fill: "#111111",
height: 16,
width: 16,
}).toSVG();
return {
fabricSvg,
fabricVersion,
reactMarkup,
};
}